/* ZENVOORI — city lap. Hand-written stylesheet, no framework. */

/* ---------- Fonts ---------- */
@font-face {
	font-family: "Archivo";
	src: url("../fonts/archivo-latin.woff2") format("woff2");
	font-weight: 100 900;
	font-stretch: 62% 125%;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: "Archivo";
	src: url("../fonts/archivo-latin-ext.woff2") format("woff2");
	font-weight: 100 900;
	font-stretch: 62% 125%;
	font-display: swap;
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: "JetBrains Mono";
	src: url("../fonts/jbmono-latin.woff2") format("woff2");
	font-weight: 400 600;
	font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
	--chalk: #f2ede4;
	--paper: #fbf8f2;
	--bone: #e8e1d4;
	--ink: #151412;
	--ink-2: #45423c;
	--mute: #67625a;
	--line: #d8cfc0;
	--signal: #ff5a1f;
	--signal-deep: #ad3608;
	--lane: #2b44d6;
	--sand: #d8c6a5;
	--oxblood: #6e1f2a;
	--moss: #3f4a2e;
	--ok: #2f6b3a;
	--err: #b42318;

	--f-sans: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	--gut: clamp(16px, 3.2vw, 44px);
	--hdr: 68px;
	--max: 1520px;
	--ease: cubic-bezier(.2, .7, .1, 1);
	--cut: 5.6deg;
}
@media (min-width: 1000px) {
	:root { --hdr: 78px; }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--hdr) + 16px); overflow-x: clip; }
body {
	margin: 0;
	background: var(--chalk);
	color: var(--ink);
	font-family: var(--f-sans);
	font-size: 16px;
	line-height: 1.55;
	font-stretch: 100%;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--signal-deep); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; font-weight: 800; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
[role="list"] { list-style: none; }
:focus-visible { outline: 2px solid var(--lane); outline-offset: 3px; }
::selection { background: var(--signal); color: var(--ink); }
[hidden] { display: none !important; }
.main { display: block; min-height: 60vh; }
.main:focus { outline: none; }

.visually-hidden, .screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
	position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: var(--chalk);
	padding: 10px 16px; text-decoration: none; transition: top .2s;
}
.skip:focus { top: 12px; color: var(--chalk); }

.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; font-weight: 500; }
.zv-i { width: 22px; height: 22px; flex: none; }

/* ---------- Buttons ---------- */
.btn {
	--bg: var(--ink); --fg: var(--chalk);
	display: inline-flex; align-items: center; justify-content: center; gap: 12px;
	min-height: 52px; padding: 0 26px;
	background: var(--bg); color: var(--fg);
	border: 1.5px solid var(--bg);
	font-weight: 700; font-size: 15px; letter-spacing: .02em; text-transform: uppercase; text-decoration: none;
	clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
	padding-right: 34px;
	transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
	white-space: nowrap;
}
.btn .zv-i { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover { color: var(--fg); }
.btn:hover .zv-i { transform: translateX(4px); }
.btn--ink:hover { --bg: var(--signal); --fg: var(--ink); }
.btn--signal { --bg: var(--signal); --fg: var(--ink); }
.btn--signal:hover { --bg: var(--ink); --fg: var(--chalk); }
.btn--line { background: transparent; color: var(--chalk); border-color: currentColor; }
.btn--line:hover { background: var(--chalk); color: var(--ink); border-color: var(--chalk); }
.btn--line-ink { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--line-ink:hover { background: var(--ink); color: var(--chalk); }
.btn--sm { min-height: 42px; padding: 0 18px; padding-right: 26px; font-size: 13px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: .03em; text-decoration: none; }
.link-arrow .zv-i { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover .zv-i { transform: translateX(4px); }
.link-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; padding: 4px 0; font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.link-btn .zv-i { width: 18px; height: 18px; }
.link-btn:hover { color: var(--signal-deep); }

/* ---------- Dropdowns (language / currency) ---------- */
.dd { position: relative; }
.dd__btn {
	list-style: none; display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 10px;
	font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: .05em; cursor: pointer;
	border: 1px solid transparent; user-select: none;
}
.dd__btn::-webkit-details-marker { display: none; }
.dd__btn .zv-i { width: 17px; height: 17px; }
.dd__btn .dd__chev { width: 14px; height: 14px; transition: transform .2s; }
.dd[open] .dd__chev { transform: rotate(180deg); }
.dd__btn:hover { border-color: currentColor; }
.dd__sym { font-weight: 600; }
.dd__menu {
	position: absolute; right: 0; top: calc(100% + 6px); z-index: 60; min-width: 190px; padding: 6px;
	background: var(--paper); color: var(--ink); border: 1px solid var(--ink); box-shadow: 6px 6px 0 var(--ink);
}
.dd__menu a { display: flex; gap: 12px; align-items: center; padding: 9px 10px; text-decoration: none; font-size: 14px; }
.dd__menu a:hover { background: var(--bone); color: var(--ink); }
.dd__menu a[aria-current="true"] { background: var(--ink); color: var(--chalk); }
.dd__code { font-family: var(--f-mono); font-size: 12px; min-width: 22px; }
.dd--footer .dd__menu, .dd--menu .dd__menu { top: auto; bottom: calc(100% + 6px); left: 0; right: auto; }

/* ---------- Header ---------- */
.hdr { position: sticky; top: 0; z-index: 50; color: var(--ink); background: rgba(242, 237, 228, .94); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); transition: background .3s, color .3s, border-color .3s; }
.hdr__bar { display: flex; align-items: center; gap: 18px; height: var(--hdr); padding: 0 var(--gut); max-width: 1800px; margin: 0 auto; }
.hdr__logo { display: block; color: inherit; flex: none; }
.zv-logo { height: 22px; width: auto; }
@media (min-width: 1000px) { .zv-logo { height: 26px; } }
.hdr__nav { flex: 1; }
.hdr__nav ul { display: flex; gap: clamp(14px, 1.6vw, 28px); justify-content: center; }
.hdr__nav a { position: relative; display: inline-flex; align-items: flex-start; gap: 3px; text-decoration: none; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 0; }
.hdr__nav sup { font-size: 9px; letter-spacing: 0; opacity: .6; top: -.2em; position: relative; }
.hdr__nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--signal); transform: scaleX(0) skewX(-30deg); transform-origin: left; transition: transform .3s var(--ease); }
.hdr__nav a:hover, .hdr__nav a[aria-current="page"] { color: inherit; }
.hdr__nav a:hover::after, .hdr__nav a[aria-current="page"]::after { transform: scaleX(1) skewX(-30deg); }
.hdr__tools { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.hdr__switch { display: flex; gap: 2px; margin-right: 6px; }
.hdr__icon { position: relative; display: grid; place-items: center; width: 42px; height: 42px; background: none; border: 0; color: inherit; text-decoration: none; }
.hdr__icon:hover { color: var(--signal-deep); }
.hdr__count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px; background: var(--signal); color: var(--ink); font: 600 11px/18px var(--f-mono); text-align: center; }
.hdr__burger { display: none; width: 42px; height: 42px; margin-left: -8px; background: none; border: 0; color: inherit; place-items: center; }

/* Header over the hero */
.has-hero .hdr { position: fixed; left: 0; right: 0; background: transparent; color: var(--chalk); border-color: transparent; backdrop-filter: none; }
.has-hero .hdr.is-solid { background: rgba(242, 237, 228, .94); color: var(--ink); border-color: var(--line); backdrop-filter: saturate(1.4) blur(10px); }
.has-hero .hdr:not(.is-solid) .hdr__count { background: var(--signal); }

@media (max-width: 1180px) {
	.hdr__nav { display: none; }
	.hdr__burger { display: grid; }
	.hdr__logo { margin-right: auto; }
}
@media (max-width: 700px) {
	.hdr__switch, .hdr__acct { display: none; }
	.hdr__bar { gap: 8px; }
	.zv-logo { height: 19px; }
}

/* Search drawer */
.search { border-top: 1px solid var(--line); background: var(--paper); color: var(--ink); }
.search__form { display: flex; align-items: center; gap: 12px; max-width: 980px; margin: 0 auto; padding: 16px var(--gut); }
.search__form input[type="search"] { flex: 1; min-width: 0; height: 52px; border: 0; border-bottom: 2px solid var(--ink); background: transparent; font-size: clamp(18px, 2.2vw, 26px); font-weight: 600; padding: 0 4px; }
.search__form input:focus { outline: none; border-color: var(--signal); }
.search__close { background: none; border: 0; width: 42px; height: 42px; display: grid; place-items: center; }

/* Mobile menu */
.menu { position: fixed; inset: 0; z-index: 90; background: var(--ink); color: var(--chalk); display: flex; flex-direction: column; padding: 0 var(--gut) 28px; overflow-y: auto; }
.menu__top { display: flex; align-items: center; justify-content: space-between; height: var(--hdr); }
.menu__logo { color: var(--chalk); }
.menu__close { background: none; border: 0; color: inherit; width: 44px; height: 44px; display: grid; place-items: center; margin-right: -8px; }
.menu__laps { margin: 18px 0 26px; }
.menu__laps a { display: flex; align-items: baseline; gap: 14px; padding: 6px 0; text-decoration: none; font-size: clamp(40px, 12vw, 68px); font-weight: 850; font-stretch: 62%; text-transform: uppercase; line-height: 1; }
.menu__laps a .mono { font-size: 13px; color: var(--signal); }
.menu__laps a:hover { color: var(--signal); }
.menu__more { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; border-top: 1px solid #3a3833; padding-top: 18px; }
.menu__more a { text-decoration: none; font-size: 16px; font-weight: 600; display: block; padding: 6px 0; }
.menu__switch { display: flex; gap: 10px; margin-top: auto; padding-top: 24px; }
.menu__switch .dd__btn { border-color: #57534b; }
.menu__stripe { position: absolute; right: -30%; bottom: 18%; width: 120%; height: 14px; background: var(--signal); transform: rotate(-24deg); pointer-events: none; opacity: .9; z-index: -1; }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
	position: relative; overflow: hidden; color: var(--chalk); background: var(--ink);
	min-height: max(100svh, 700px);
	display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: calc(var(--hdr) + clamp(20px, 5vh, 70px)) auto 1fr auto;
	isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture, .hero__poster, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__poster, .hero__video { object-fit: cover; object-position: 72% 40%; }
.hero__video { opacity: 0; transition: opacity 1s ease; }
.hero__video.is-playing { opacity: 1; }
.hero__shade { position: absolute; inset: 0; background:
	linear-gradient(90deg, rgba(21, 20, 18, .78) 0%, rgba(21, 20, 18, .48) 38%, rgba(21, 20, 18, .06) 66%),
	linear-gradient(0deg, rgba(21, 20, 18, .7) 0%, rgba(21, 20, 18, 0) 34%),
	linear-gradient(180deg, rgba(21, 20, 18, .45) 0%, rgba(21, 20, 18, 0) 18%); }
.hero__content { grid-row: 2; padding: 0 var(--gut); max-width: 900px; position: relative; z-index: 2; }
.hero__kicker { display: flex; gap: 18px; align-items: center; margin-bottom: 18px; color: var(--chalk); }
.hero__kicker span:first-child::before { content: ""; display: inline-block; width: 28px; height: 3px; background: var(--signal); margin-right: 10px; vertical-align: middle; transform: skewX(-30deg); }
.hero__clock { color: var(--signal); font-variant-numeric: tabular-nums; min-width: 9ch; }
.hero__title { font-size: clamp(3.4rem, 7.4vw, 8.6rem); font-weight: 860; font-stretch: 62%; text-transform: uppercase; line-height: .86; letter-spacing: -.005em; }
.hero__line { display: block; }
.hero__line--shift { padding-left: .9em; }
.hero__sub { max-width: 40ch; margin: 18px 0 24px; font-size: clamp(16px, 1.35vw, 19px); color: #e9e2d6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__laps { display: flex; margin-top: 30px; max-width: 660px; }
.hero__laps li { flex: 1; border-top: 1px solid rgba(242, 237, 228, .35); }
.hero__laps a { position: relative; display: flex; align-items: baseline; gap: 7px; padding: 10px 12px 0 0; text-decoration: none; color: rgba(242, 237, 228, .62); transition: color .3s; }
.hero__n { color: inherit; font-size: 11px; }
.hero__cat { font-size: 16px; font-weight: 800; font-stretch: 72%; text-transform: uppercase; letter-spacing: .02em; }
.hero__count { display: none; }
.hero__bar { position: absolute; left: 0; top: -2px; height: 3px; width: 100%; background: var(--signal); transform: scaleX(0); transform-origin: left; }
.hero__laps li.is-on a, .hero__laps a:hover { color: var(--chalk); }
.hero__laps li.is-on .hero__n { color: var(--signal); }
.hero__laps li.is-on .hero__bar { animation: lapbar 4.2s linear forwards; }
.hero__laps:hover li.is-on .hero__bar { animation-play-state: paused; }
@keyframes lapbar { to { transform: scaleX(1); } }

.hero__play { position: absolute; right: var(--gut); top: calc(var(--hdr) + 20px); z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(242, 237, 228, .7); background: rgba(21, 20, 18, .35); color: var(--chalk); display: grid; place-items: center; }
.hero__play .zv-i { width: 16px; height: 16px; }
.hero__play:hover { background: var(--signal); border-color: var(--signal); color: var(--ink); }
.hero__play-off { display: none; }
.hero__play[aria-pressed="true"] .hero__play-on { display: none; }
.hero__play[aria-pressed="true"] .hero__play-off { display: block; }

.hero__word { grid-row: 4; position: relative; margin: 18px var(--gut) calc(var(--gut) * .6 + 26px); color: var(--chalk); aspect-ratio: 3910 / 686; z-index: 1; }
.hero__word > span { position: absolute; inset: 0; }
.hero__logo { width: 100%; height: 100%; }
.hero__logo path[fill="#FF5A1F"] { fill: var(--chalk); }
.hero__word-a { clip-path: polygon(0 0, 100% 0, 100% 24%, 0 80%); }
.hero__word-b { clip-path: polygon(0 80%, 100% 24%, 100% 100%, 0 100%); transform: translateX(1.6%); color: var(--signal); }
.hero__word-b .hero__logo path { fill: var(--signal); }
.hero__stripe { position: absolute; z-index: 1; left: -5%; right: -5%; height: clamp(8px, 1vw, 15px); background: var(--signal);
	bottom: calc((100vw - 2 * var(--gut)) / 5.7 * .48 + var(--gut) * .6 + 26px); transform: rotate(calc(-1 * var(--cut))); transform-origin: center; }

@media (max-width: 1100px) {
	.hero__laps { max-width: none; }
}
@media (max-width: 700px) {
	.hero { min-height: max(100svh, 620px); grid-template-rows: calc(var(--hdr) + 22px) auto 1fr auto; }
	.hero__poster, .hero__video { object-position: 50% 30%; }
	.hero__shade { background: linear-gradient(180deg, rgba(21, 20, 18, .72) 0%, rgba(21, 20, 18, .38) 42%, rgba(21, 20, 18, .1) 60%, rgba(21, 20, 18, .66) 100%); }
	.hero__title { font-size: 15vw; }
	.hero__sub { margin: 16px 0 20px; }
	.hero__cta .btn { min-height: 48px; }
	.hero__play { width: 40px; height: 40px; top: auto; bottom: calc((100vw - 2 * var(--gut)) / 5.7 + 60px); }
	.hero__laps { display: none; }
}

/* ---------- Ticker ---------- */
.ticker { position: relative; z-index: 3; background: var(--signal); color: var(--ink); transform: rotate(-1.6deg) scale(1.04); margin: -26px 0 0; padding: 14px 0; overflow: hidden; box-shadow: 0 1px 0 var(--ink); }
.ticker__track { display: flex; width: max-content; animation: tick 38s linear infinite; }
.ticker__set { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.ticker__set span { font-size: clamp(22px, 2.6vw, 36px); font-weight: 850; font-stretch: 62%; text-transform: uppercase; line-height: 1; white-space: nowrap; }
.ticker__set i { width: 34px; height: 5px; background: var(--ink); transform: rotate(-55deg); flex: none; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.sec { padding: clamp(64px, 9vw, 140px) var(--gut); max-width: var(--max); margin: 0 auto; }
.sec__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.sec__head--row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.sec__head--row .sec__lead { max-width: 42ch; margin: 0; }
.sec__kicker { color: var(--signal-deep); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.sec__kicker::before { content: ""; width: 22px; height: 3px; background: currentColor; transform: skewX(-30deg); }
.sec__title { font-size: clamp(2.8rem, 6.6vw, 6.4rem); font-weight: 860; font-stretch: 62%; text-transform: uppercase; line-height: .88; letter-spacing: -.005em; }
.sec__title--sm { font-size: clamp(2.2rem, 4.4vw, 4.2rem); }
.sec__lead { margin-top: 20px; font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-2); max-width: 52ch; }

/* ---------- Laps (category staircase) ---------- */
.laps { position: relative; }
.laps__line { display: none; }
.laps__list { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 1.8vw, 28px); padding-bottom: 20px; }
.laps__list::before {
	content: ""; position: absolute; z-index: 0; left: -2%; right: -2%; top: -1vw; height: calc(min(26vw, 380px) + 3vw);
	background: linear-gradient(to top right, transparent calc(50% - 2px), var(--signal) calc(50% - 2px), var(--signal) calc(50% + 2px), transparent calc(50% + 2px));
}
.lap { position: relative; z-index: 1; }
.lap--1 { margin-top: min(6.5vw, 95px); }
.lap--2 { margin-top: min(13vw, 190px); }
.lap--3 { margin-top: min(19.5vw, 285px); }
.lap--4 { margin-top: min(26vw, 380px); }
.lap a { display: block; text-decoration: none; }
.lap__num { position: absolute; z-index: 2; top: -.52em; left: -.04em; font-size: clamp(3.6rem, 7.4vw, 7.6rem); font-weight: 900; font-stretch: 62%; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--ink); transition: color .3s, -webkit-text-stroke-color .3s; pointer-events: none; }
.lap__media { display: block; aspect-ratio: 3 / 4; overflow: hidden; background: var(--bone); clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%); }
.lap__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.lap__name { display: block; margin-top: 14px; font-size: clamp(20px, 1.7vw, 26px); font-weight: 850; font-stretch: 70%; text-transform: uppercase; line-height: 1.02; }
.lap__meta { display: block; margin-top: 6px; color: var(--mute); }
.lap a:hover .lap__num { color: var(--signal); -webkit-text-stroke-color: var(--signal); }
.lap a:hover .lap__media img { transform: scale(1.05); }
.lap a:hover .lap__name { color: var(--signal-deep); }
@media (max-width: 900px) {
	.laps__list { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 68vw; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gut); margin: 0 calc(-1 * var(--gut)); padding: 60px var(--gut) 10px; scrollbar-width: none; }
	.laps__list::-webkit-scrollbar { display: none; }
	.laps__list::before { top: 30px; height: 8px; left: 0; right: 0; background: var(--signal); transform: skewY(-2deg); width: 300%; }
	.lap { scroll-snap-align: start; margin-top: 0 !important; }
	.lap__num { font-size: 4.2rem; }
}

/* ---------- Product cards ---------- */
.card { position: relative; list-style: none; }
.card__media { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; background: var(--bone); }
.card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .45s ease, transform .9s var(--ease); }
.card__img--alt { opacity: 0; }
.card:hover .card__img--alt { opacity: 1; }
.card:hover .card__img { transform: scale(1.035); }
.card__tag { position: absolute; left: 10px; top: 10px; background: var(--chalk); padding: 3px 7px; font-size: 10.5px; }
.card__media::after { content: ""; position: absolute; left: -10%; bottom: 14%; width: 120%; height: 6px; background: var(--signal); transform: rotate(-8deg) scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.card:hover .card__media::after { transform: rotate(-8deg) scaleX(1); }
.card__body { padding: 12px 2px 0; }
.card__title { font-size: 15px; font-weight: 700; line-height: 1.25; letter-spacing: .005em; }
.card__title a { text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card__row { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 5px; }
.card__price { font-size: 15px; font-weight: 500; color: var(--ink-2); }
.card__price del { color: var(--mute); margin-right: 6px; }
.sw { display: inline-flex; gap: 3px; }
.sw i { width: 14px; height: 10px; background: var(--c); transform: skewX(-24deg); box-shadow: inset 0 0 0 1px rgba(21, 20, 18, .18); }

/* ---------- Rail ---------- */
.rail { padding-left: 0; padding-right: 0; max-width: none; }
.laps + .rail { padding-top: clamp(20px, 4vw, 60px); }
.rail__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; padding: 0 var(--gut); margin-bottom: 30px; max-width: var(--max); margin-inline: auto; }
.rail__nav { display: flex; align-items: center; gap: 8px; }
.rail__btn { width: 48px; height: 48px; display: grid; place-items: center; background: none; border: 1.5px solid var(--ink); transition: background .2s, color .2s; }
.rail__btn:hover { background: var(--ink); color: var(--chalk); }
.rail__btn:disabled { opacity: .3; cursor: default; background: none; color: var(--ink); }
.rail__nav .link-arrow { margin-left: 14px; }
.rail__track { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(230px, 21vw, 330px); gap: clamp(14px, 1.6vw, 24px); overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--gut) 12px; scroll-padding: 0 var(--gut); scrollbar-width: none; }
.rail__track::-webkit-scrollbar { display: none; }
.rail__track .card { scroll-snap-align: start; }
.rail__track .card:nth-child(even) { margin-top: 36px; }
@media (max-width: 700px) {
	.rail__track { grid-auto-columns: 66vw; }
	.rail__btn { display: none; }
	.rail__nav .link-arrow { margin: 0; }
}

/* ---------- Design language ---------- */
.line { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 6vw, 110px); align-items: center; }
.line__media { position: relative; padding: 0 0 60px 0; }
.line__main { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 93%); }
.line__chip { position: absolute; width: clamp(120px, 15vw, 220px); aspect-ratio: 1; object-fit: cover; border: 6px solid var(--chalk); box-shadow: 8px 8px 0 var(--ink); }
.line__chip--a { right: -4%; top: 12%; transform: rotate(4deg); }
.line__chip--b { left: -3%; bottom: 0; transform: rotate(-5deg); }
.principles { margin: 34px 0 34px; border-top: 1.5px solid var(--ink); }
.principles li { display: grid; grid-template-columns: 54px 1fr; gap: 10px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.principles .mono { color: var(--signal-deep); padding-top: 6px; }
.principles h3 { font-size: 26px; font-weight: 850; font-stretch: 70%; text-transform: uppercase; margin-bottom: 6px; }
.principles p { margin: 0; color: var(--ink-2); max-width: 46ch; }
@media (max-width: 900px) {
	.line { grid-template-columns: 1fr; }
	.line__chip--a { right: 0; }
	.line__chip--b { left: 0; }
}

/* ---------- Panorama ---------- */
.pano { position: relative; overflow: hidden; background: var(--ink); color: var(--chalk); }
.pano__img { width: 100%; height: clamp(320px, 42vw, 720px); object-fit: cover; object-position: center 40%; }
.pano__cap { position: absolute; z-index: 2; left: var(--gut); bottom: clamp(20px, 4vw, 56px); }
.pano__cap h2 { font-size: clamp(2.6rem, 7vw, 7.6rem); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .86; text-shadow: 0 2px 30px rgba(0, 0, 0, .35); }
.pano__cap .mono { color: var(--chalk); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.pano__cap .mono::before { content: ""; width: 24px; height: 3px; background: var(--signal); transform: skewX(-30deg); }
.pano::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(21, 20, 18, .72) 0%, rgba(21, 20, 18, .15) 45%, rgba(21, 20, 18, 0) 70%); pointer-events: none; }
.pano::after { content: ""; position: absolute; z-index: 1; right: -6%; bottom: 22%; width: 46%; height: 12px; background: var(--signal); transform: rotate(-9deg); }
@supports (animation-timeline: view()) {
	.pano__img { animation: panodrift linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
	@keyframes panodrift { from { transform: scale(1.12) translateX(-2%); } to { transform: scale(1.12) translateX(2%); } }
}

/* ---------- Spotlight ---------- */
.spot { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 100px); align-items: center; }
.spot__media { position: relative; background: #ebe4d8; padding: clamp(20px, 3vw, 44px); }
.spot__front { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.spot__detail { position: absolute; right: -6%; bottom: -8%; width: 42%; aspect-ratio: 3 / 4; object-fit: cover; border: 6px solid var(--chalk); transform: rotate(3deg); box-shadow: 10px 10px 0 var(--signal); }
.spot__num { position: absolute; left: -2%; top: -9%; font-size: clamp(6rem, 13vw, 13rem); font-weight: 900; font-stretch: 62%; line-height: 1; color: transparent; -webkit-text-stroke: 2px var(--ink); pointer-events: none; }
.spot__price { font-size: 24px; font-weight: 700; margin: 12px 0 16px; }
.spot__lead { color: var(--ink-2); font-size: 18px; max-width: 46ch; }
.anatomy { margin: 20px 0 30px; border-top: 1.5px solid var(--ink); }
.anatomy li { display: grid; grid-template-columns: 42px 1fr; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.anatomy .mono { color: var(--signal-deep); padding-top: 3px; }
@media (max-width: 900px) {
	.spot { grid-template-columns: 1fr; }
	.spot__media { margin-bottom: 40px; margin-right: 6%; }
}

/* ---------- Lookbook ---------- */
.looks__grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 8px; gap: 0 clamp(12px, 1.6vw, 22px); }
.look { margin: 0; position: relative; }
.look img { width: 100%; height: 100%; object-fit: cover; }
.look figcaption { position: absolute; left: 0; bottom: 0; transform: translateY(50%); display: flex; flex-wrap: wrap; gap: 4px 8px; align-items: center; max-width: 92%; background: var(--chalk); padding: 8px 12px; font-size: 13px; font-weight: 600; box-shadow: 4px 4px 0 var(--ink); }
.look figcaption .mono { color: var(--signal-deep); width: 100%; font-size: 10.5px; }
.look figcaption a { text-decoration: none; }
.look figcaption a:hover { text-decoration: underline; }
.look figcaption i { font-style: normal; color: var(--mute); }
.look--0 { grid-column: 1 / 5; grid-row: 1 / span 58; }
.look--1 { grid-column: 5 / 12; grid-row: 8 / span 42; }
.look--2 { grid-column: 12 / 13; display: none; }
.look--3 { grid-column: 2 / 6; grid-row: 66 / span 50; transform: rotate(-1.4deg); }
.look--4 { grid-column: 7 / 12; grid-row: 58 / span 38; }
.look--5 { grid-column: 7 / 10; grid-row: 104 / span 42; transform: rotate(1.6deg); }
.look--6 { grid-column: 10 / 13; grid-row: 100 / span 34; }
.look--2 { display: block; grid-column: 1 / 5; grid-row: 124 / span 30; }
@media (max-width: 900px) {
	.looks__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; gap: 46px 12px; }
	.look { grid-column: auto !important; grid-row: auto !important; transform: none !important; }
	.look img { aspect-ratio: 3 / 4; height: auto; }
	.look--1, .look--4 { grid-column: 1 / -1 !important; }
	.look--1 img, .look--4 img { aspect-ratio: 4 / 3; }
	.look figcaption { position: static; transform: none; box-shadow: none; padding: 8px 0 0; background: none; max-width: none; }
}

/* ---------- Closer ---------- */
.closer { background: var(--ink); color: var(--chalk); overflow: hidden; position: relative; }
.closer__inner { max-width: var(--max); margin: 0 auto; padding: clamp(70px, 10vw, 150px) var(--gut); display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: end; }
.closer__title { font-size: clamp(2.8rem, 6.8vw, 7rem); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .88; }
.closer__title span { color: var(--signal); font-style: italic; padding-right: .12em; }
.closer__side { display: grid; gap: 22px; justify-items: start; }
.closer__side img { width: 100%; aspect-ratio: 1; object-fit: cover; clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%); }
.closer::before { content: ""; position: absolute; left: -10%; top: 38%; width: 130%; height: 12px; background: var(--lane); transform: rotate(-6deg); opacity: .9; }
@media (max-width: 800px) { .closer__inner { grid-template-columns: 1fr; } .closer__side img { max-width: 70%; } }

/* ---------- Footer ---------- */
.ftr { background: var(--ink); color: var(--chalk); border-top: 1px solid #2d2b27; }
.closer + .ftr { border-top: 0; }
.ftr a { text-decoration: none; }
.ftr a:hover { color: var(--signal); }
.ftr__service { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid #34322d; }
.ftr__service a { display: flex; gap: 14px; align-items: flex-start; padding: 26px var(--gut); height: 100%; border-right: 1px solid #34322d; font-size: 14px; color: #cfc8bb; }
.ftr__service li:last-child a { border-right: 0; }
.ftr__service strong { display: block; color: var(--chalk); font-size: 15px; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .02em; }
.ftr__service .zv-i { color: var(--signal); margin-top: 2px; }
.ftr__main { display: grid; grid-template-columns: 1.1fr 1.6fr; gap: 50px; padding: clamp(50px, 6vw, 90px) var(--gut) 40px; max-width: var(--max); margin: 0 auto; }
.ftr__claim { font-size: clamp(30px, 3.4vw, 46px); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .95; margin-bottom: 14px; }
.ftr__intro > p { color: #bdb6a9; max-width: 38ch; }
.ftr__care { margin-top: 28px; display: grid; gap: 8px; justify-items: start; }
.ftr__care .mono { color: var(--signal); margin: 0 0 4px; }
.ftr__care a { display: inline-flex; gap: 10px; align-items: center; font-size: 17px; font-weight: 600; }
.ftr__care .zv-i { width: 19px; height: 19px; color: #9c958a; }
.ftr__hours { color: #9c958a; font-size: 14px; margin: 2px 0 0; }
.ftr__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ftr__h { color: #9c958a; margin-bottom: 16px; }
.ftr__cols li { margin-bottom: 9px; }
.ftr__cols a { font-size: 15px; font-weight: 500; }
.ftr__mark { position: relative; padding: 0 var(--gut); color: #262420; overflow: hidden; }
.ftr__logo { width: 100%; height: auto; }
.ftr__logo path[fill="#FF5A1F"] { fill: var(--signal); }
.ftr__lap { position: absolute; left: -5%; right: -5%; top: 52%; height: 10px; background: var(--signal); transform: rotate(calc(-1 * var(--cut))); }
.ftr__base { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding: 22px var(--gut) 26px; font-size: 13px; color: #9c958a; border-top: 1px solid #34322d; }
.ftr__base p { margin: 0; }
.ftr__base a { text-decoration: underline; text-underline-offset: 3px; }
.ftr__switch { display: flex; gap: 6px; }
.ftr__switch .dd__btn { border-color: #45423c; color: var(--chalk); }
@media (max-width: 1000px) {
	.ftr__service { grid-template-columns: 1fr 1fr; }
	.ftr__service li:nth-child(2) a { border-right: 0; }
	.ftr__service li:nth-child(-n+2) a { border-bottom: 1px solid #34322d; }
	.ftr__main { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
	.ftr__service a { padding: 18px 14px; font-size: 13px; }
	.ftr__cols { grid-template-columns: 1fr 1fr; }
}

/* ---------- Cookie notice ---------- */
.cookie { position: fixed; z-index: 80; left: var(--gut); bottom: 16px; max-width: 560px; display: flex; gap: 16px; align-items: center; background: var(--paper); color: var(--ink); border: 1.5px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); padding: 16px 18px; font-size: 14px; }
.cookie p { margin: 0; }
@media (max-width: 600px) { .cookie { right: var(--gut); flex-direction: column; align-items: flex-start; } }

/* ---------- Shop head / bar / grid ---------- */
.shead { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(360px, 44vw, 620px); border-bottom: 1px solid var(--line); }
.shead__text { padding: clamp(24px, 4vw, 60px) var(--gut) clamp(30px, 4vw, 60px); display: flex; flex-direction: column; justify-content: flex-end; }
.shead__lap { color: var(--signal-deep); margin: 26px 0 12px; }
.shead__lap span { color: var(--mute); }
.shead__title { font-size: clamp(3rem, 7vw, 7.4rem); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .86; }
.shead__desc { margin-top: 18px; max-width: 48ch; color: var(--ink-2); font-size: 17px; }
.shead__desc p:last-child { margin: 0; }
.shead__media { position: relative; overflow: hidden; clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%); background: var(--bone); }
.shead__media img { width: 100%; height: 100%; object-fit: cover; }
.shead__num { position: absolute; right: var(--gut); bottom: -.14em; font-size: clamp(7rem, 16vw, 16rem); font-weight: 900; font-stretch: 62%; line-height: 1; color: var(--chalk); mix-blend-mode: normal; text-shadow: 0 0 40px rgba(0, 0, 0, .15); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; font-size: 13px; color: var(--mute); }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .6; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
@media (max-width: 800px) {
	.shead { grid-template-columns: 1fr; }
	.shead__media { order: -1; height: 46vw; min-height: 220px; clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%); }
	.shead__text { justify-content: flex-start; }
	.shead__num { font-size: 6.4rem; bottom: -.12em; }
}

.sbar { position: sticky; top: var(--hdr); z-index: 20; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px var(--gut); background: rgba(242, 237, 228, .95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { display: inline-flex; gap: 6px; align-items: baseline; padding: 8px 14px; border: 1.5px solid var(--ink); text-decoration: none; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; white-space: nowrap; transform: skewX(-10deg); }
.chip > * , .chip { }
.chip .mono { font-size: 10px; }
.chip:hover { background: var(--bone); color: var(--ink); }
.chip[aria-current="page"] { background: var(--ink); color: var(--chalk); }
.sbar__sort select, .woocommerce-ordering select { height: 40px; border: 1.5px solid var(--ink); background: var(--paper); padding: 0 34px 0 12px; font-size: 14px; font-weight: 600; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23151412' stroke-width='2'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 8px center; background-size: 18px; }
.woocommerce-ordering { margin: 0; }
@media (max-width: 700px) { .sbar { flex-direction: column; align-items: stretch; gap: 10px; } .sbar__sort select { width: 100%; } }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px clamp(12px, 1.6vw, 24px); padding: 34px var(--gut) 80px; max-width: 1800px; margin: 0 auto; list-style: none; }
.grid > .card:nth-child(even) { margin-top: 44px; }
.grid__look { grid-column: span 2; position: relative; overflow: hidden; min-height: 420px; background: var(--ink); }
.grid__look img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.grid__quote { position: absolute; left: 18px; right: 18px; bottom: 16px; margin: 0; color: var(--chalk); font-size: clamp(26px, 3vw, 44px); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .9; text-shadow: 0 2px 24px rgba(0, 0, 0, .4); }
.grid__look::after { content: ""; position: absolute; left: -10%; top: 20%; width: 120%; height: 10px; background: var(--signal); transform: rotate(-10deg); }
@media (max-width: 1100px) { .grid { grid-template-columns: repeat(3, 1fr); } .grid > .card:nth-child(even) { margin-top: 0; } .grid > .card:nth-child(3n+2) { margin-top: 40px; } }
@media (max-width: 700px) {
	.grid { grid-template-columns: 1fr 1fr; gap: 26px 12px; }
	.grid > .card:nth-child(3n+2) { margin-top: 0; }
	.grid > .card:nth-child(even) { margin-top: 30px; }
	.grid__look { min-height: 300px; }
	.card__title { font-size: 14px; }
}
.pager ul { display: flex; justify-content: center; gap: 6px; padding: 0 var(--gut) 80px; }
.pager a, .pager span { display: grid; place-items: center; min-width: 46px; height: 46px; padding: 0 10px; border: 1.5px solid var(--ink); text-decoration: none; font-weight: 700; }
.pager .current { background: var(--ink); color: var(--chalk); }
.pager a:hover { background: var(--bone); }
.pager .zv-i { width: 18px; height: 18px; }
.empty { text-align: center; padding: 70px var(--gut) 90px; }
.empty__big { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .9; margin-bottom: 12px; }
.empty .btn { margin-top: 16px; }

/* ---------- Product page ---------- */
.pdp-notices:empty { display: none; }
.pdp-notices { max-width: 1800px; margin: 0 auto; padding: 16px var(--gut) 0; }
.pdp__crumbs { padding: 18px var(--gut) 0; max-width: 1800px; margin: 0 auto; }
.pdp__wrap { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(360px, 1fr); gap: clamp(26px, 4vw, 70px); padding: 18px var(--gut) 0; max-width: 1800px; margin: 0 auto; }
.gal { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.gal__item { background: var(--bone); overflow: hidden; }
.gal__item img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.gal__item:nth-child(even) { margin-top: 70px; }
.gal__item--0 { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%); }
.gal__item--3 { clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%); }
.gal__count { display: none; }
.pdp__sticky { position: sticky; top: calc(var(--hdr) + 20px); padding-bottom: 40px; }
.pdp__sku { color: var(--signal-deep); margin-bottom: 12px; }
.pdp__title { font-size: clamp(2.4rem, 3.8vw, 4rem); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .9; }
.pdp__price { font-size: 24px; font-weight: 700; margin: 14px 0 12px; }
.pdp__excerpt { color: var(--ink-2); font-size: 17px; }
.pdp__excerpt p:last-child { margin-bottom: 0; }
.pdp__colour { display: flex; align-items: center; gap: 10px; margin: 20px 0 0; font-weight: 600; font-size: 15px; }
.pdp__colour .mono { color: var(--mute); min-width: 60px; }
.pdp__colour .sw i { width: 18px; height: 13px; }
.pdp__buy { margin-top: 22px; padding-top: 20px; border-top: 1.5px solid var(--ink); }
.pdp__sizehead { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.pdp__sizehead .mono { color: var(--mute); }

.variations { width: 100%; border-collapse: collapse; margin: 0 0 14px; }
.variations th { display: none; }
.variations td { padding: 0; display: block; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { min-width: 58px; height: 48px; padding: 0 12px; background: var(--paper); border: 1.5px solid var(--ink); font-weight: 700; font-size: 15px; clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%); transition: background .2s, color .2s; }
.pill:hover { background: var(--bone); }
.pill[aria-checked="true"] { background: var(--ink); color: var(--chalk); }
.pills.is-error .pill { border-color: var(--err); }
.pills-msg { color: var(--err); font-size: 14px; margin: 8px 0 0; }
.single_variation_wrap .woocommerce-variation-price, .single_variation_wrap .woocommerce-variation-availability { display: none; }
.woocommerce-variation-description p { font-size: 14px; color: var(--mute); }
form.cart { display: block; }
form.cart:not(.variations_form), .woocommerce-variation-add-to-cart { display: flex; gap: 10px; align-items: stretch; }
.quantity { display: flex; flex: none; }
.quantity .qty, .woocommerce form .quantity .qty { width: 72px; min-height: 0; padding: 0 6px; height: 56px; border: 1.5px solid var(--ink); background: var(--paper); text-align: center; font-weight: 700; font-size: 16px; -moz-appearance: textfield; }
.quantity .qty::-webkit-outer-spin-button, .quantity .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.single_add_to_cart_button, .button.alt, button.alt, #place_order, .checkout-button {
	flex: 1; min-height: 56px; padding: 0 24px; border: 0; background: var(--signal); color: var(--ink);
	font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: .03em;
	clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%); transition: background .25s, color .25s;
}
.single_add_to_cart_button:hover, .button.alt:hover, #place_order:hover, .checkout-button:hover { background: var(--ink); color: var(--chalk); }
.single_add_to_cart_button.disabled, .single_add_to_cart_button:disabled { background: #e3dacb; color: var(--ink); cursor: not-allowed; }
.single_add_to_cart_button.disabled:hover, .single_add_to_cart_button:disabled:hover { background: #e3dacb; color: var(--ink); }
.pdp__assure { margin: 22px 0 6px; display: grid; gap: 10px; }
.pdp__assure li { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--ink-2); }
.pdp__assure .zv-i { color: var(--signal-deep); }
.acc { margin-top: 22px; border-top: 1.5px solid var(--ink); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 17px 0; cursor: pointer; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 15px; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary .zv-i { width: 18px; height: 18px; transition: transform .25s; }
.acc details[open] summary .zv-i { transform: rotate(45deg); }
.acc__body { padding: 0 0 20px; color: var(--ink-2); font-size: 15px; }
.acc__body p { max-width: 60ch; }
.ticks { display: grid; gap: 8px; margin-top: 6px; }
.ticks li { position: relative; padding-left: 22px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .62em; width: 12px; height: 4px; background: var(--signal); transform: skewX(-30deg); }
.pdp__note { font-size: 13px; color: var(--mute); margin-top: 18px; }
.pdp__story { position: relative; margin: clamp(60px, 8vw, 120px) 0 0; padding: clamp(60px, 7vw, 110px) var(--gut); background: var(--ink); color: var(--chalk); overflow: hidden; }
.pdp__story blockquote { margin: 0 auto; max-width: 1100px; position: relative; z-index: 1; }
.pdp__story p { font-size: clamp(2rem, 4.6vw, 4.6rem); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .95; margin: 0; }
.pdp__story-num { position: absolute; right: -1%; bottom: -.2em; font-size: clamp(10rem, 26vw, 26rem); font-weight: 900; font-stretch: 62%; line-height: 1; color: transparent; -webkit-text-stroke: 2px #3a3833; }
.pdp__story::before { content: ""; position: absolute; left: -10%; top: 18%; width: 60%; height: 10px; background: var(--signal); transform: rotate(-7deg); }
.rail--related { padding-top: clamp(60px, 7vw, 110px); }
@media (max-width: 1000px) {
	.pdp__wrap { grid-template-columns: 1fr; padding-top: 12px; }
	.pdp__gallery { position: relative; margin: 0 calc(-1 * var(--gut)); }
	.gal { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gut); gap: 8px; padding: 0 var(--gut); scrollbar-width: none; }
	.gal::-webkit-scrollbar { display: none; }
	.gal__item { flex: 0 0 84%; scroll-snap-align: center; margin-top: 0 !important; clip-path: none !important; }
	.gal__count { display: block; position: absolute; right: calc(var(--gut) + 10px); bottom: 10px; background: var(--chalk); padding: 4px 8px; }
	.pdp__sticky { position: static; }
}

/* ---------- Dialog ---------- */
.dialog { width: min(760px, calc(100vw - 24px)); max-height: calc(100vh - 40px); border: 1.5px solid var(--ink); padding: clamp(20px, 3vw, 36px); background: var(--paper); color: var(--ink); box-shadow: 12px 12px 0 var(--ink); }
.dialog::backdrop { background: rgba(21, 20, 18, .55); }
.dialog__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dialog__head h2 { font-size: 34px; font-weight: 900; font-stretch: 62%; text-transform: uppercase; }
.dialog__close { background: none; border: 0; width: 44px; height: 44px; display: grid; place-items: center; margin-right: -10px; }
.dialog__foot { color: var(--mute); font-size: 14px; margin: 14px 0 0; }
.table-scroll { overflow-x: auto; }
.size-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 520px; }
.size-table th, .size-table td { padding: 11px 10px; border-bottom: 1px solid var(--line); text-align: left; }
.size-table thead th { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; border-bottom: 1.5px solid var(--ink); }
.size-table tbody th { font-weight: 800; }
.size-table tbody tr:hover { background: var(--bone); }

/* ---------- Document pages ---------- */
.doc__head { position: relative; padding: clamp(40px, 6vw, 90px) var(--gut) clamp(34px, 4vw, 60px); max-width: var(--max); margin: 0 auto; overflow: hidden; }
.doc__kicker { color: var(--signal-deep); margin-bottom: 14px; }
.doc__title { font-size: clamp(2.8rem, 7vw, 7rem); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .88; max-width: 14ch; }
.doc__date { color: var(--mute); margin: 18px 0 0; }
.doc__stripe { position: absolute; right: -4%; bottom: 24%; width: 42%; height: 12px; background: var(--signal); transform: rotate(-9deg); }
.doc__wrap { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(30px, 5vw, 90px); padding: 0 var(--gut) clamp(70px, 8vw, 120px); max-width: var(--max); margin: 0 auto; border-top: 1.5px solid var(--ink); padding-top: 40px; }
.doc__wrap:not(:has(.doc__toc)) { grid-template-columns: minmax(0, 1fr); }
.doc__wrap:not(:has(.doc__toc)) .doc__body { max-width: 860px; }
.doc__toc { position: sticky; top: calc(var(--hdr) + 24px); align-self: start; }
.doc__toc .mono { color: var(--mute); margin-bottom: 12px; }
.doc__toc li { border-bottom: 1px solid var(--line); }
.doc__toc a { display: flex; gap: 10px; padding: 9px 0; text-decoration: none; font-size: 14px; font-weight: 600; }
.doc__toc a .mono { margin: 0; color: var(--signal-deep); font-size: 10.5px; padding-top: 3px; }
.doc__toc a:hover { color: var(--signal-deep); }
@media (max-width: 900px) {
	.doc__wrap { grid-template-columns: 1fr; }
	.doc__toc { position: static; }
	.doc__toc ol { columns: 2; column-gap: 20px; }
	.doc__stripe { width: 60%; bottom: 8%; }
}
.prose { font-size: 17px; line-height: 1.65; color: var(--ink-2); }
.prose > * { max-width: 72ch; }
.prose h2 { color: var(--ink); font-size: clamp(1.7rem, 2.6vw, 2.4rem); font-weight: 900; font-stretch: 70%; text-transform: uppercase; line-height: 1; margin: 2.2em 0 .6em; padding-top: 18px; border-top: 1px solid var(--line); }
.prose h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.prose h3 { color: var(--ink); font-size: 20px; font-weight: 800; margin: 1.6em 0 .4em; }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .4em; }
.prose ul li::marker { color: var(--signal-deep); }
.prose a { color: var(--ink); font-weight: 600; }
.prose a:hover { color: var(--signal-deep); }
.prose strong { color: var(--ink); }
.prose table { width: 100%; max-width: none; border-collapse: collapse; font-size: 15px; margin: 0 0 1.4em; }
.prose th, .prose td { padding: 11px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose thead th { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink); border-bottom: 1.5px solid var(--ink); }
.prose .table-scroll, .prose figure { max-width: none; }
.prose details { border-bottom: 1px solid var(--line); max-width: 72ch; }
.prose details summary { cursor: pointer; list-style: none; padding: 16px 30px 16px 0; font-weight: 700; color: var(--ink); position: relative; }
.prose details summary::-webkit-details-marker { display: none; }
.prose details summary::after { content: "+"; position: absolute; right: 4px; top: 12px; font-size: 22px; font-weight: 400; transition: transform .2s; }
.prose details[open] summary::after { transform: rotate(45deg); }
.prose details > :not(summary) { margin-top: 0; }
.prose .callout { background: var(--paper); border-left: 5px solid var(--signal); padding: 18px 20px; margin: 0 0 1.4em; }
.prose .callout p:last-child { margin: 0; }
.prose .facts { display: grid; grid-template-columns: max-content 1fr; gap: 0; border-top: 1.5px solid var(--ink); margin: 0 0 1.6em; }
.prose .facts dt, .prose .facts dd { margin: 0; padding: 14px 16px 14px 0; border-bottom: 1px solid var(--line); }
.prose .facts dt { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--mute); padding-top: 17px; }
.prose .facts dd { color: var(--ink); font-weight: 600; }
@media (max-width: 600px) { .prose .facts { grid-template-columns: 1fr; } .prose .facts dt { border-bottom: 0; padding-bottom: 0; } }
.prose .withdrawal { background: var(--paper); border: 1.5px dashed var(--ink-2); padding: 20px 22px; font-size: 15px; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 90px); padding: clamp(40px, 6vw, 90px) var(--gut) clamp(70px, 8vw, 120px); max-width: var(--max); margin: 0 auto; position: relative; }
.contact__title { font-size: clamp(3rem, 7vw, 7rem); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .88; margin-bottom: 22px; }
.contact__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 22px; }
.contact__cards li { background: var(--paper); border: 1.5px solid var(--ink); padding: 18px; display: grid; gap: 4px; }
.contact__cards .zv-i { color: var(--signal-deep); margin-bottom: 6px; }
.contact__cards .mono { color: var(--mute); }
.contact__cards a { font-weight: 700; font-size: 17px; text-decoration: none; word-break: break-word; }
.contact__cards small { color: var(--mute); font-size: 13px; }
.contact__links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.contact__links a { font-weight: 600; }
.contact__h { font-size: 30px; font-weight: 900; font-stretch: 62%; text-transform: uppercase; margin-bottom: 18px; }
.contact__form { background: var(--paper); border: 1.5px solid var(--ink); padding: clamp(20px, 3vw, 40px); box-shadow: 10px 10px 0 var(--signal); align-self: start; }
.contact__img { grid-column: 1 / -1; margin: 20px 0 0; }
.contact__img img { width: 100%; height: clamp(220px, 30vw, 420px); object-fit: cover; clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .contact__cards { grid-template-columns: 1fr; } }

/* Forms (theme + WooCommerce) */
.cform { display: grid; gap: 16px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .cform__row { grid-template-columns: 1fr; } }
.cform__hp { position: absolute; left: -9999px; }
.field { display: grid; gap: 6px; }
.field > span, .form-row label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.field input, .field select, .field textarea,
.woocommerce form .input-text, .woocommerce form select, .woocommerce-page form .input-text,
.form-row input.input-text, .form-row textarea, .form-row select, #coupon_code {
	width: 100%; min-height: 50px; padding: 12px 14px; border: 1.5px solid var(--ink); border-radius: 0; background: #fff; font-size: 16px; color: var(--ink);
}
.field textarea, .form-row textarea { min-height: 120px; resize: vertical; }
.field select, .form-row select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23151412' stroke-width='2'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus, .form-row .input-text:focus, .form-row select:focus { outline: none; border-color: var(--lane); box-shadow: 0 0 0 3px rgba(43, 68, 214, .18); }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--ink); flex: none; }
.cform__note { padding: 14px 16px; font-weight: 600; margin: 0; }
.cform__note--ok { background: #e3efe2; border-left: 5px solid var(--ok); }
.cform__note--err { background: #f8e3e1; border-left: 5px solid var(--err); }
.cform .btn { justify-self: start; }

/* ---------- About ---------- */
.about-hero { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: end; padding: clamp(40px, 6vw, 90px) var(--gut) 0; max-width: var(--max); margin: 0 auto; }
.about-hero__title { font-size: clamp(3.2rem, 8.4vw, 9rem); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .86; }
.about-hero__lead { font-size: clamp(17px, 1.5vw, 21px); color: var(--ink-2); max-width: 44ch; margin-top: 26px; }
.about-hero__img { margin: 0; }
.about-hero__img img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%); }
.about-hero { isolation: isolate; }
.about-hero__stripe { position: absolute; left: -5%; bottom: -46px; width: 70%; height: 12px; background: var(--signal); transform: rotate(-4deg); z-index: -1; }
.about-idea { display: grid; gap: 40px; }
.about-idea__big { font-size: clamp(1.8rem, 3.6vw, 3.4rem); font-weight: 800; line-height: 1.08; max-width: 24ch; color: var(--ink); margin: 0; }
.about-idea__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1000px; margin-left: auto; color: var(--ink-2); font-size: 17px; }
.about-make__list { border-top: 1.5px solid var(--ink); }
.about-make__list a { display: grid; grid-template-columns: 60px minmax(0, 1.2fr) minmax(0, 2fr) 30px; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: padding .3s var(--ease), background .3s; }
.about-make__list strong { font-size: clamp(22px, 2.4vw, 34px); font-weight: 900; font-stretch: 62%; text-transform: uppercase; }
.about-make__list .mono { color: var(--signal-deep); }
.about-make__desc { color: var(--ink-2); font-size: 15px; }
.about-make__list a:hover { padding-left: 14px; background: var(--paper); color: var(--ink); }
.about-draw { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(20px, 4vw, 60px); align-items: start; position: relative; }
.about-draw figure { margin: 0; }
.about-draw__a img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.about-draw__b { grid-column: 1; width: 52%; margin: -18% 0 0 auto !important; position: relative; z-index: 1; transform: rotate(2deg); }
.about-draw__b img { border: 6px solid var(--chalk); box-shadow: 10px 10px 0 var(--ink); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.about-draw__text { grid-column: 2; grid-row: 1 / span 2; }
.about-rules { background: var(--ink); color: var(--chalk); max-width: none; }
.about-rules .sec__title { max-width: var(--max); margin: 0 auto 30px; }
.about-rules__list { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.about-rules__list li { border-top: 3px solid var(--signal); padding-top: 16px; font-size: 18px; font-weight: 600; }
.about-who { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.about-who__text { font-size: clamp(18px, 1.8vw, 24px); max-width: 44ch; font-weight: 500; }
.about-who__cta { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
	.about-hero, .about-draw { grid-template-columns: 1fr; }
	.about-idea__cols { grid-template-columns: 1fr; }
	.about-draw__text { grid-column: 1; grid-row: auto; }
	.about-draw__b { width: 70%; }
	.about-rules__list { grid-template-columns: 1fr 1fr; }
	.about-make__list a { grid-template-columns: 44px 1fr 24px; }
	.about-make__desc { display: none; }
}

/* ---------- 404 ---------- */
.lost { position: relative; min-height: 76vh; display: grid; align-items: end; color: var(--chalk); overflow: hidden; }
.lost__media { position: absolute; inset: 0; }
.lost__media img { width: 100%; height: 100%; object-fit: cover; }
.lost__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(21, 20, 18, .85), rgba(21, 20, 18, .2) 60%), linear-gradient(90deg, rgba(21, 20, 18, .6), rgba(21, 20, 18, 0) 65%); }
.lost__text { position: relative; padding: 60px var(--gut); max-width: 800px; }
.lost__text h1 { font-size: clamp(3rem, 8vw, 8rem); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .86; margin: 12px 0 18px; }
.lost__text .mono { color: var(--chalk); }
.lost__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.lost .btn--line-ink { color: var(--chalk); border-color: var(--chalk); }

/* ---------- WooCommerce: notices ---------- */
.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error, .wc-block-components-notice-banner {
	list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin: 0 0 20px; padding: 16px 18px;
	background: var(--paper); border: 1.5px solid var(--ink); border-left: 6px solid var(--signal); font-weight: 600; font-size: 15px;
}
.woocommerce-error { border-left-color: var(--err); display: block; }
.woocommerce-error li { margin: 2px 0; }
.woocommerce-info { border-left-color: var(--lane); }
.woocommerce-message .button, .woocommerce-info .button, .notice-link { margin-left: auto; order: 2; font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: .04em; text-decoration: underline; background: none; border: 0; padding: 0; }
.woocommerce-message a.button:hover, .notice-link:hover { color: var(--signal-deep); }
.woocommerce-message::before, .woocommerce-info::before { content: none; }

/* ---------- WooCommerce: cart / checkout / account ---------- */
.shop-page { max-width: 1400px; margin: 0 auto; padding: clamp(30px, 5vw, 70px) var(--gut) clamp(70px, 8vw, 110px); }
.shop-page__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; border-bottom: 1.5px solid var(--ink); padding-bottom: 18px; margin-bottom: 30px; }
.shop-page__title { font-size: clamp(2.8rem, 6vw, 6rem); font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .86; }
.shop-page__head .mono { display: inline-flex; gap: 8px; align-items: center; color: var(--ok); }
.shop-page__head .zv-i { width: 16px; height: 16px; }

.woocommerce-cart-form { margin-bottom: 30px; }
.shop_table { width: 100%; border-collapse: collapse; font-size: 15px; }
.shop_table th, .shop_table td { padding: 16px 10px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
.shop_table thead th { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; border-bottom: 1.5px solid var(--ink); }
.shop_table .product-thumbnail { width: 110px; }
.cart-thumb { width: 88px; aspect-ratio: 3 / 4; object-fit: cover; }
.shop_table .product-name a { font-weight: 700; text-decoration: none; }
.shop_table .product-name .variation { display: flex; gap: 6px; margin: 6px 0 0; font-size: 13px; color: var(--mute); }
.shop_table .product-name .variation dt, .shop_table .product-name .variation dd, .shop_table .product-name .variation p { margin: 0; }
.shop_table .product-remove a { display: grid; place-items: center; width: 32px; height: 32px; border: 1.5px solid var(--ink); text-decoration: none; font-size: 20px; line-height: 1; }
.shop_table .product-remove a:hover { background: var(--ink); color: var(--chalk); }
.shop_table .quantity .qty { height: 44px; width: 64px; }
.shop_table td.actions { padding-top: 22px; }
.shop_table td.actions .coupon { display: inline-flex; gap: 8px; align-items: stretch; flex-wrap: wrap; }
.shop_table td.actions .coupon label { display: none; }
.shop_table td.actions #coupon_code { width: 200px; min-height: 48px; }
.shop_table td.actions .button, .woocommerce-cart-form .button, .woocommerce .button:not(.alt):not(.checkout-button):not(.wc-forward), .woocommerce-account .button {
	min-height: 48px; padding: 0 20px; border: 1.5px solid var(--ink); background: transparent; font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: .04em; text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
}
.shop_table td.actions .button:hover, .woocommerce .button:not(.alt):hover { background: var(--ink); color: var(--chalk); }
.shop_table td.actions > .button { float: right; }
.woocommerce .button:disabled, .woocommerce .button[disabled] { opacity: .45; cursor: default; }
.cart-collaterals { display: flex; justify-content: flex-end; }
.cart_totals { width: min(460px, 100%); background: var(--paper); border: 1.5px solid var(--ink); padding: 26px; box-shadow: 10px 10px 0 var(--signal); }
.cart_totals h2 { font-size: 30px; font-weight: 900; font-stretch: 62%; text-transform: uppercase; margin-bottom: 12px; }
.cart_totals .shop_table th, .cart_totals .shop_table td { padding: 12px 0; }
.cart_totals .order-total th, .cart_totals .order-total td { font-size: 19px; font-weight: 800; border-bottom: 0; }
.wc-proceed-to-checkout { margin-top: 16px; }
.checkout-button { display: flex; align-items: center; justify-content: center; width: 100%; text-decoration: none; }
.woocommerce-shipping-methods { list-style: none; }
.woocommerce-shipping-methods li { display: flex; gap: 8px; align-items: center; }
.woocommerce-shipping-destination, .woocommerce-shipping-calculator { font-size: 13px; color: var(--mute); }
.shipping-calculator-form { display: grid; gap: 10px; margin-top: 10px; }
.return-to-shop { text-align: center; margin: 0; }
.return-to-shop .button { background: var(--ink) !important; color: var(--chalk) !important; min-height: 52px !important; padding: 0 28px !important; }
@media (max-width: 760px) {
	.woocommerce-cart-form .shop_table thead { display: none; }
	.woocommerce-cart-form .shop_table tr.cart_item { display: grid; grid-template-columns: 92px 1fr auto; gap: 4px 14px; padding: 16px 0; border-bottom: 1px solid var(--line); position: relative; }
	.woocommerce-cart-form .shop_table td { border: 0; padding: 0; }
	.woocommerce-cart-form .shop_table .product-thumbnail { grid-row: 1 / span 4; width: auto; display: block; }
	.woocommerce-cart-form .shop_table .product-remove { grid-column: 3; grid-row: 1; }
	.woocommerce-cart-form .shop_table .product-name { grid-column: 2; grid-row: 1; }
	.woocommerce-cart-form .shop_table .product-price { display: none; }
	.woocommerce-cart-form .shop_table .product-quantity, .woocommerce-cart-form .shop_table .product-subtotal { grid-column: 2 / 4; display: flex; justify-content: space-between; align-items: center; }
	.woocommerce-cart-form .shop_table td::before { content: attr(data-title); font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; color: var(--mute); }
	.woocommerce-cart-form .shop_table .product-name::before, .woocommerce-cart-form .shop_table .product-remove::before, .woocommerce-cart-form .shop_table .product-thumbnail::before, .woocommerce-cart-form .shop_table td.actions::before { content: none; }
	.woocommerce-cart-form .shop_table tr:last-child, .woocommerce-cart-form .shop_table td.actions { display: block; }
	.shop_table td.actions > .button { float: none; width: 100%; margin-top: 10px; }
	.shop_table td.actions .coupon { display: flex; }
	.shop_table td.actions #coupon_code { flex: 1; width: auto; }
	.cart_totals { box-shadow: 6px 6px 0 var(--signal); padding: 20px; }
}

/* Checkout */
form.checkout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, 1fr); gap: 0 clamp(26px, 4vw, 70px); align-items: start; }
form.checkout > .woocommerce-NoticeGroup, form.checkout > .woocommerce-notices-wrapper { grid-column: 1 / -1; }
#customer_details { grid-column: 1; grid-row: 1 / span 3; }
#order_review_heading { grid-column: 2; font-size: 28px; font-weight: 900; font-stretch: 62%; text-transform: uppercase; margin: 0 0 12px; }
#order_review { grid-column: 2; background: var(--paper); border: 1.5px solid var(--ink); padding: 24px; box-shadow: 10px 10px 0 var(--signal); position: sticky; top: calc(var(--hdr) + 20px); }
.col2-set .col-1, .col2-set .col-2 { width: 100%; float: none; }
.woocommerce-billing-fields h3, .woocommerce-shipping-fields h3, .woocommerce-additional-fields h3 { font-size: 24px; font-weight: 900; font-stretch: 70%; text-transform: uppercase; margin: 10px 0 16px; }
#ship-to-different-address { font-size: 16px !important; font-stretch: 100% !important; text-transform: none !important; }
#ship-to-different-address label { display: flex; gap: 10px; align-items: center; font-weight: 700; }
.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-row { margin: 0 0 16px; display: grid; gap: 6px; }
.form-row-wide, #billing_address_1_field, #billing_address_2_field, #billing_email_field, #billing_country_field, #shipping_address_1_field, #shipping_address_2_field, #shipping_country_field, #billing_company_field, #shipping_company_field { grid-column: 1 / -1; }
.form-row label .required { color: var(--signal-deep); text-decoration: none; border: 0; }
.form-row label .optional { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--mute); }
.form-row.woocommerce-invalid .input-text, .form-row.woocommerce-invalid select { border-color: var(--err); }
.select2-container .select2-selection--single { height: 50px !important; border: 1.5px solid var(--ink) !important; border-radius: 0 !important; }
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 47px !important; padding-left: 14px !important; }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 48px !important; right: 8px !important; }
.select2-dropdown { border: 1.5px solid var(--ink) !important; border-radius: 0 !important; }
.select2-results__option--highlighted { background: var(--ink) !important; }
.woocommerce-checkout-review-order-table { margin-bottom: 18px; }
.woocommerce-checkout-review-order-table th, .woocommerce-checkout-review-order-table td { padding: 12px 0; }
.woocommerce-checkout-review-order-table .product-total, .woocommerce-checkout-review-order-table tfoot td { text-align: right; }
.woocommerce-checkout-review-order-table .order-total th, .woocommerce-checkout-review-order-table .order-total td { font-size: 19px; font-weight: 800; }
#payment { margin-top: 10px; }
#payment .woocommerce-info, #payment .woocommerce-notice { display: block; font-weight: 500; line-height: 1.55; }
.cart_totals .shop_table th { width: 36%; padding-right: 12px; }
#payment .payment_methods { list-style: none; border-top: 1.5px solid var(--ink); }
#payment .payment_methods > li { padding: 14px 0; border-bottom: 1px solid var(--line); }
#payment .payment_methods > li.woocommerce-notice, #payment .payment_methods > li:only-child:not(.wc_payment_method) { border: 0; padding: 0; }
#payment .payment_box { background: var(--bone); padding: 14px; margin-top: 10px; font-size: 14px; }
.woocommerce-terms-and-conditions-wrapper { margin: 16px 0; font-size: 14px; color: var(--ink-2); }
.woocommerce-terms-and-conditions-wrapper .form-row { display: block; }
.woocommerce-form__label-for-checkbox { display: flex !important; gap: 10px; align-items: flex-start; text-transform: none !important; letter-spacing: 0 !important; font-weight: 600 !important; font-size: 14px !important; }
.woocommerce-form__label-for-checkbox input { width: 20px; height: 20px; accent-color: var(--ink); flex: none; margin-top: 1px; }
#place_order { width: 100%; }
.checkout-note { display: flex; gap: 12px; background: var(--bone); padding: 14px; margin: 16px 0; font-size: 14px; color: var(--ink-2); }
.checkout-note p { margin: 0; }
.checkout-note .zv-i { color: var(--signal-deep); }
.checkout-legal { font-size: 13px; color: var(--mute); margin: 10px 0 14px; }
.woocommerce-form-coupon-toggle .woocommerce-info, .woocommerce-form-login-toggle .woocommerce-info { grid-column: 1 / -1; }
.checkout_coupon, .woocommerce-form-login { display: grid; gap: 12px; padding: 18px; border: 1.5px solid var(--ink); margin-bottom: 20px; background: var(--paper); }
@media (max-width: 960px) {
	form.checkout { grid-template-columns: 1fr; }
	#customer_details, #order_review_heading, #order_review { grid-column: 1; grid-row: auto; }
	#order_review { position: static; box-shadow: 6px 6px 0 var(--signal); padding: 18px; }
	.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper { grid-template-columns: 1fr; }
}
/* Order received */
.woocommerce-order { display: grid; gap: 24px; }
.woocommerce-thankyou-order-received { font-size: 22px; font-weight: 800; }
.woocommerce-order-overview { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.woocommerce-order-overview li { background: var(--paper); border: 1.5px solid var(--ink); padding: 14px; font-size: 13px; text-transform: uppercase; font-family: var(--f-mono); }
.woocommerce-order-overview strong { display: block; font-family: var(--f-sans); font-size: 17px; text-transform: none; margin-top: 4px; }
.woocommerce-customer-details address { font-style: normal; background: var(--paper); padding: 16px; border: 1px solid var(--line); }

/* Account */
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 40px; }
.woocommerce-account:not(.logged-in) .woocommerce { grid-template-columns: 1fr; max-width: 980px; }
.woocommerce-MyAccount-navigation ul { list-style: none; border-top: 1.5px solid var(--ink); }
.woocommerce-MyAccount-navigation a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 700; }
.woocommerce-MyAccount-navigation .is-active a { color: var(--signal-deep); }
.u-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.u-columns h2 { font-size: 28px; font-weight: 900; font-stretch: 62%; text-transform: uppercase; margin-bottom: 14px; }
.woocommerce-form-login, .woocommerce-form-register { display: grid; gap: 4px; padding: 24px; border: 1.5px solid var(--ink); background: var(--paper); }
.woocommerce-form-login__submit, .woocommerce-form-register__submit, .woocommerce-Button { background: var(--ink) !important; color: var(--chalk) !important; }
.woocommerce-form-login__submit:hover, .woocommerce-form-register__submit:hover, .woocommerce-Button:hover { background: var(--signal) !important; color: var(--ink) !important; }
.lost_password { font-size: 14px; }
.woocommerce-privacy-policy-text { font-size: 13px; color: var(--mute); }
.show-password-input { display: none; }
@media (max-width: 800px) { .woocommerce-account .woocommerce, .u-columns { grid-template-columns: 1fr; } }

/* ---------- Motion ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.lap[data-reveal].is-in { transition-delay: calc(var(--i, 0) * 90ms); }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	[data-reveal] { opacity: 1; transform: none; }
	.ticker__track { animation: none; }
}

@media print {
	.hdr, .ftr, .cookie, .menu, .search { display: none !important; }
	body { background: #fff; }
}
