/* COTRIVEN — "tuning in late at night". Tokens come from design/design.json. */
:root {
	--bg: #0d0e15;
	--surface: #161823;
	--surface2: #1f2230;
	--ink: #efe8da;
	--ink2: #bdb7aa;
	--muted: #8e8a82;
	--line: #2c2f3d;
	--line2: #3d4152;
	--paper: #ece5d6;
	--paper-2: #e3dbc9;
	--paper-ink: #15161e;
	--paper-ink2: #4a4740;
	--paper-line: #cfc6b3;
	--accent: #ffab3d;
	--accent-deep: #8a4f00;
	--accent2: #ff5040;
	--ok: #7fcf9a;
	--err: #ff7a6b;
	--ok-paper: #1f6b3a;
	--err-paper: #b42318;

	--f-serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
	--f-sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
	--f-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

	--fs-display: clamp(56px, 9.4vw, 158px);
	--fs-h1: clamp(44px, 6.4vw, 104px);
	--fs-h2: clamp(34px, 4.4vw, 68px);
	--fs-h3: clamp(24px, 2.4vw, 34px);
	--fs-body: 16px;
	--fs-small: 13.5px;
	--fs-label: 11.5px;

	--gut: clamp(16px, 3.2vw, 44px);
	--sec: clamp(72px, 10vw, 160px);
	--max: 1480px;
	--head-h: 68px;
	--ease: cubic-bezier(.22, .8, .2, 1);
	--needle: 2px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 16px); }
body {
	margin: 0; background: var(--bg); color: var(--ink);
	font: 400 var(--fs-body)/1.6 var(--f-sans); font-stretch: 100%;
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
	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(--accent); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.05; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
::selection { background: var(--accent); color: var(--bg); }
.screen-reader-text, .hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--accent); color: var(--bg); padding: 10px 16px; font-weight: 600; }
.skip:focus { top: 12px; }
.site-main:focus { outline: none; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.h-serif { font-family: var(--f-serif); font-weight: 400; letter-spacing: -.01em; }
.h-serif em, em.h-serif { font-style: italic; }
.mono { font-family: var(--f-mono); font-size: .8em; letter-spacing: .02em; }
.label, .eyebrow {
	font: 600 var(--fs-label)/1.3 var(--f-sans); font-stretch: 85%;
	text-transform: uppercase; letter-spacing: .14em; color: var(--ink2); margin: 0;
}
.small { font-size: var(--fs-small); line-height: 1.55; }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.icon { width: 20px; height: 20px; flex: none; }

/* ---------- Buttons: the needle slides like a tuning knob ---------- */
.btn {
	--b: var(--ink);
	position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 52px; padding: 0 26px 0 30px; border: 1px solid var(--b); background: transparent; color: var(--ink);
	font: 600 13px/1 var(--f-sans); font-stretch: 85%; letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
	overflow: hidden; isolation: isolate; transition: color .3s var(--ease), background .3s var(--ease), border-color .3s;
}
.btn::before {
	content: ""; position: absolute; top: 10px; bottom: 10px; left: 12px; width: var(--needle); background: currentColor;
	transition: left .45s var(--ease);
}
.btn::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: -1;
	background: repeating-linear-gradient(90deg, var(--accent) 0 1px, transparent 1px 6px); transform: scaleX(0); transform-origin: left;
	transition: transform .45s var(--ease);
}
.btn:hover { color: var(--ink); }
.btn:hover::before { left: calc(100% - 14px); }
.btn:hover::after { transform: scaleX(1); }
.btn .icon { width: 18px; height: 18px; }
.btn--accent { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.btn--accent:hover { color: var(--bg); background: #ffbb62; }
.btn--accent::after { background: repeating-linear-gradient(90deg, var(--bg) 0 1px, transparent 1px 6px); opacity: .5; }
.btn--ghost { --b: rgba(239, 232, 218, .45); }
.btn--block { width: 100%; }
.btn--grow { flex: 1; }
.btn--small { white-space: nowrap; flex: none; min-height: 40px; padding: 0 16px 0 22px; font-size: 12px; }
.btn--small::before { top: 9px; bottom: 9px; left: 9px; }
.btn[disabled], .btn.is-busy { opacity: .6; pointer-events: none; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font: 600 13px/1 var(--f-sans); font-stretch: 85%; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; }
.link-arrow .icon { width: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }
.linkish { background: none; border: 0; padding: 0; color: inherit; text-decoration: underline; text-underline-offset: 3px; font-size: inherit; }
.icon-btn { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 0; background: none; color: inherit; position: relative; text-decoration: none; }
.icon-btn:hover { color: var(--accent); }

.onair { display: inline-flex; align-items: center; gap: 6px; color: var(--accent2); font-weight: 600; letter-spacing: .1em; }
.onair i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent2); box-shadow: 0 0 0 0 rgba(255, 80, 64, .6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 80, 64, .55); } 70% { box-shadow: 0 0 0 8px rgba(255, 80, 64, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 80, 64, 0); } }

/* ---------- Strip + header ---------- */
.strip { background: #07080d; border-bottom: 1px solid var(--line); font-size: 12.5px; color: var(--ink2); position: relative; z-index: 60; }
.strip__in { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.strip p { margin: 0; white-space: nowrap; }
.strip__air { display: flex; gap: 10px; align-items: center; }
.strip__clock { color: var(--ink); }
.strip__msg { overflow: hidden; text-overflow: ellipsis; }
.strip__region { display: inline-flex; align-items: center; gap: 8px; background: none; border: 0; padding: 6px 0; color: var(--ink); font-size: 12.5px; }
.strip__region .icon { width: 16px; height: 16px; }
.strip__region:hover { color: var(--accent); }
.strip__lang { border-left: 1px solid var(--line2); padding-left: 8px; font-weight: 600; font-size: 11.5px; letter-spacing: .1em; }

.site-head { position: sticky; top: 0; z-index: 50; background: rgba(13, 14, 21, .9); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: background .35s, border-color .35s; }
.site-head--over { background: transparent; border-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
.site-head--over.is-scrolled { background: rgba(13, 14, 21, .9); border-color: var(--line); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.site-head__in { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); height: var(--head-h); display: flex; align-items: center; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); flex: none; }
.logo:hover { color: var(--ink); }
.logo .mark { width: 34px; height: 34px; transition: transform .6s var(--ease); }
.logo:hover .mark { transform: rotate(-24deg); }
.logo__word { font: 700 19px/1 var(--f-sans); font-stretch: 78%; letter-spacing: .2em; }
.nav { margin-left: auto; }
.nav__list { list-style: none; display: flex; gap: 4px; align-items: center; }
.nav__list a { position: relative; display: block; padding: 10px 12px; font-size: 14.5px; font-weight: 500; text-decoration: none; color: var(--ink); }
.nav__list a sup { position: absolute; top: 0; left: 12px; font-size: 9.5px; color: var(--muted); letter-spacing: .04em; }
.nav__list a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 5px; background: repeating-linear-gradient(90deg, var(--accent) 0 1px, transparent 1px 4px); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav__list a:hover, .nav__list a[aria-current] { color: var(--accent); }
.nav__list a:hover::after, .nav__list a[aria-current]::after { transform: scaleX(1); }
.site-head__tools { display: flex; align-items: center; margin-left: 8px; }
.menu-toggle { display: none; margin-left: -10px; }
.bag__count { position: absolute; top: 5px; right: 2px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px; background: var(--accent); color: var(--bg); font-size: 10.5px; font-weight: 600; display: grid; place-items: center; }
.bag__count[hidden] { display: none; }
.bag__eq { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -20%); display: flex; gap: 2px; align-items: flex-end; height: 9px; opacity: 0; }
.bag__eq i { width: 2px; height: 100%; background: var(--accent); transform-origin: bottom; }
.bag.is-live .bag__eq { opacity: 1; }
.bag.is-live .bag__eq i { animation: eq .5s ease-in-out infinite alternate; }
.bag.is-live .bag__eq i:nth-child(2) { animation-delay: .15s; }
.bag.is-live .bag__eq i:nth-child(3) { animation-delay: .3s; }
@keyframes eq { from { transform: scaleY(.25); } to { transform: scaleY(1); } }

/* ---------- Drawers ---------- */
.drawer { position: fixed; inset: 0; z-index: 120; display: flex; justify-content: flex-end; }
.drawer[hidden] { display: none; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(4, 5, 9, .66); animation: fade .3s var(--ease); }
.drawer__panel { position: relative; z-index: 1; width: min(480px, 100%); height: 100%; overflow-y: auto; background: var(--surface); border-left: 1px solid var(--line); padding: 24px clamp(20px, 3vw, 36px) 36px; animation: slidein .4s var(--ease); display: flex; flex-direction: column; gap: 24px; }
.drawer--menu { justify-content: flex-start; }
.drawer--menu .drawer__panel { border-left: 0; border-right: 1px solid var(--line); animation-name: slidein-l; }
.drawer--search { align-items: flex-start; justify-content: center; }
.drawer--search .drawer__panel { width: 100%; height: auto; border: 0; border-bottom: 1px solid var(--line); animation-name: slidedown; padding-block: 28px; }
@keyframes fade { from { opacity: 0; } }
@keyframes slidein { from { transform: translateX(40px); opacity: 0; } }
@keyframes slidein-l { from { transform: translateX(-40px); opacity: 0; } }
@keyframes slidedown { from { transform: translateY(-20px); opacity: 0; } }
.drawer__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; position: relative; }
.drawer__head .eyebrow { position: absolute; top: 0; }
.drawer__title { font: 400 36px/1.05 var(--f-serif); margin-top: 22px; max-width: 12ch; }
.drawer__close { width: 44px; height: 44px; display: grid; place-items: center; background: none; border: 1px solid var(--line2); color: var(--ink); flex: none; }
.drawer__close:hover { border-color: var(--accent); color: var(--accent); }
.region-form fieldset { border: 0; margin: 0; padding: 0; }
.region-form legend { margin-bottom: 10px; }
.region-list { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); margin-bottom: 18px; }
.region-opt { display: flex; align-items: center; gap: 12px; padding: 12px 4px; border-bottom: 1px solid var(--line); cursor: pointer; font-size: 15px; }
.region-opt input { accent-color: var(--accent); width: 16px; height: 16px; margin: 0; }
.region-opt__cur { margin-left: auto; color: var(--ink2); }
.region-opt:has(input:checked) { color: var(--accent); }
.region-opt:hover { background: var(--surface2); }
.region-form .small { margin-top: 12px; }
.lang-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 10px 0 12px; }
.lang-list a { display: block; padding: 10px 8px; border: 1px solid var(--line2); text-align: center; text-decoration: none; font-size: 14px; }
.lang-list a:hover, .lang-list a.gt-current-lang { border-color: var(--accent); color: var(--accent); font-weight: 400 !important; }
.menu-dial { list-style: none; border-top: 1px solid var(--line); }
.menu-dial a { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "freq ch" "name ch"; padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.menu-dial span { grid-area: freq; color: var(--muted); font-size: 11px; }
.menu-dial strong { grid-area: name; font: 400 34px/1.05 var(--f-serif); }
.menu-dial em { grid-area: ch; align-self: center; font-style: normal; color: var(--accent); font-size: 11px; }
.menu-links { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.menu-links a { display: block; padding: 8px 0; text-decoration: none; color: var(--ink2); }
.search-form { max-width: 900px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line2); padding-bottom: 12px; }
.search-form input[type=search] { flex: 1; min-width: 0; background: none; border: 0; font: 400 clamp(24px, 3vw, 40px)/1.2 var(--f-serif); padding: 8px 0; color: var(--ink); }
.search-form input::placeholder { color: var(--muted); }
.search-form input:focus { outline: none; }
.search-hints { max-width: 900px; margin: 0 auto; width: 100%; display: flex; gap: 14px; flex-wrap: wrap; }
.search-hints a { color: var(--ink); }

/* ---------- Toast + cookie ---------- */
.toast { position: fixed; z-index: 130; right: var(--gut); bottom: 24px; display: flex; align-items: center; gap: 14px; background: var(--ink); color: var(--bg); padding: 14px 18px; max-width: calc(100% - 2 * var(--gut)); animation: slidedown .35s var(--ease) reverse; box-shadow: 0 16px 40px rgba(0, 0, 0, .4); }
.toast[hidden] { display: none; }
.toast__msg { margin: 0; font-weight: 600; font-size: 14px; }
.toast__link { color: var(--bg); font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.toast__link:hover { color: var(--accent-deep); }
.toast__eq { display: flex; gap: 2px; align-items: flex-end; height: 16px; }
.toast__eq i { width: 3px; height: 100%; background: var(--accent-deep); animation: eq .45s ease-in-out infinite alternate; }
.toast__eq i:nth-child(2) { animation-delay: .15s; }
.toast__eq i:nth-child(3) { animation-delay: .3s; }
.toast.is-err { background: var(--err-paper); color: #fff; }
.cookie { position: fixed; z-index: 110; left: var(--gut); bottom: 24px; max-width: 460px; background: var(--surface2); border: 1px solid var(--line2); padding: 16px 18px; display: flex; gap: 16px; align-items: center; }
.cookie[hidden] { display: none; }
.cookie p { margin: 0; color: var(--ink2); }

/* ---------- Dial ---------- */
.dial { position: relative; color: var(--ink2); user-select: none; }
.dial__track { position: relative; height: 100%; }
.dial__ticks { width: 100%; height: 24px; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; opacity: .75; }
.dial__ticks path { vector-effect: non-scaling-stroke; }
.dial__nums { position: relative; height: 18px; margin-top: 4px; }
.dial__nums span { position: absolute; transform: translateX(-50%); font: 400 10.5px/1 var(--f-mono); color: var(--muted); }
.dial__channels { position: absolute; left: 0; right: 0; bottom: 100%; height: 0; }
.dial__ch { position: absolute; bottom: 8px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; color: var(--ink); white-space: nowrap; padding: 6px 8px 0; }
.dial__ch i { order: 3; width: 9px; height: 9px; border: 1.5px solid currentColor; border-radius: 50%; background: var(--bg); transition: background .3s, border-color .3s; }
.dial__ch b { font: 600 10.5px/1 var(--f-mono); color: var(--muted); letter-spacing: .06em; }
.dial__ch span { font: 500 13.5px/1 var(--f-sans); }
.dial__ch:hover, .dial__ch.is-tuned { color: var(--accent); }
.dial__ch:hover i, .dial__ch.is-tuned i { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 12px var(--accent); }
.dial__needle { position: absolute; top: -8px; bottom: 18px; width: var(--needle); margin-left: -1px; background: var(--accent); box-shadow: 0 0 14px rgba(255, 171, 61, .8); transition: left .5s var(--ease); pointer-events: none; }
.dial.is-live .dial__needle { transition: left .12s linear; }
.dial__read { position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%); padding: 4px 7px; background: var(--accent); color: var(--bg); font: 600 11px/1 var(--f-mono); white-space: nowrap; }
.dial--footer, .dial--rule { padding-top: 0; }
.dial--footer { padding-top: 64px; }
.dial--rule { opacity: .7; }
.dial--rule .dial__nums { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: max(680px, calc(100svh - 36px)); max-height: 1080px; margin-top: calc(-1 * var(--head-h)); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -1; background: #07080d; }
.hero__media picture, .hero__img, .hero__video, .hero__video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__img { animation: drift 24s var(--ease) both; }
.hero__video video { opacity: 0; transition: opacity 1.2s; }
.hero__video video.is-on { opacity: 1; }
@keyframes drift { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__shade { position: absolute; inset: 0; background:
	linear-gradient(90deg, rgba(8, 9, 14, .92) 0%, rgba(8, 9, 14, .6) 38%, rgba(8, 9, 14, 0) 70%),
	linear-gradient(0deg, rgba(8, 9, 14, .95) 0%, rgba(8, 9, 14, 0) 38%),
	linear-gradient(180deg, rgba(8, 9, 14, .7) 0%, rgba(8, 9, 14, 0) 22%); }
.grain { position: absolute; inset: -50%; pointer-events: none; opacity: .09; mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	animation: grain 1.2s steps(4) infinite; }
@keyframes grain { 0% { transform: translate(0, 0); } 25% { transform: translate(-3%, 2%); } 50% { transform: translate(2%, -3%); } 75% { transform: translate(-2%, -1%); } 100% { transform: translate(0, 0); } }
.hero__in { position: relative; padding-top: calc(var(--head-h) + 32px); padding-bottom: 132px; }
.hero__kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; color: var(--ink2); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.hero__kicker-t { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero__title { font: 400 var(--fs-display)/.88 var(--f-serif); letter-spacing: -.025em; margin: 0 0 26px; max-width: 62%; }
.hero__title span { display: block; }
.hero__title em { display: block; font-style: italic; color: var(--accent); padding-left: clamp(28px, 6vw, 104px); white-space: nowrap; }
.hero__sub { max-width: 440px; font-size: 17px; color: var(--ink2); margin-bottom: 30px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__dial { position: absolute; left: 0; right: 0; bottom: 0; padding: 0 var(--gut) 18px; }
.hero__dial .dial { max-width: calc(var(--max) - 2 * var(--gut)); margin: 0 auto; }
.spin { position: absolute; right: var(--gut); bottom: 128px; width: 330px; background: rgba(22, 24, 35, .82); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid var(--line2); padding: 14px; }
.spin__label { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; color: var(--ink2); text-transform: uppercase; font-size: 11px; letter-spacing: .12em; }
.spin__bars { display: flex; gap: 2px; align-items: flex-end; height: 12px; }
.spin__bars i { width: 3px; height: 100%; background: var(--accent); animation: eq .6s ease-in-out infinite alternate; }
.spin__bars i:nth-child(2) { animation-delay: .2s; } .spin__bars i:nth-child(3) { animation-delay: .35s; } .spin__bars i:nth-child(4) { animation-delay: .1s; }
.spin__stack { display: grid; }
.spin__item { grid-area: 1 / 1; display: grid; grid-template-columns: 76px 1fr; gap: 14px; align-items: center; text-decoration: none; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .6s var(--ease), transform .6s var(--ease), visibility .6s; }
.spin__item.is-on { opacity: 1; visibility: visible; transform: none; }
.spin__img { width: 76px; height: 100px; object-fit: cover; background: var(--surface2); }
.spin__txt { display: flex; flex-direction: column; gap: 4px; }
.spin__freq { color: var(--accent); font-size: 11px; }
.spin__txt strong { font: 400 22px/1.1 var(--f-serif); }
.spin__price { font-size: 14px; color: var(--ink2); }
.price__code { font: 400 10px/1 var(--f-mono); color: var(--muted); letter-spacing: .06em; vertical-align: 1px; }

/* ---------- Ticker ---------- */
.ticker { border-block: 1px solid var(--line); overflow: hidden; background: var(--bg); }
.ticker__track { display: flex; width: max-content; animation: tick 60s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker p { display: flex; align-items: center; margin: 0; white-space: nowrap; }
.ticker span { font: italic 400 clamp(22px, 2.4vw, 34px)/1 var(--f-serif); padding: 20px 0; color: var(--ink); }
.ticker i { width: 60px; height: 14px; margin: 0 24px; background: repeating-linear-gradient(90deg, var(--accent) 0 1px, transparent 1px 6px); opacity: .8; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Section heads ---------- */
.sec-head { margin-bottom: clamp(28px, 4vw, 56px); position: relative; }
.sec-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sec-head__num { color: var(--accent); margin: 0 0 14px; display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: .1em; font-size: 11.5px; }
.sec-head__num::before { content: ""; width: 44px; height: 10px; background: repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 5px); }
.sec-head__title { font-size: var(--fs-h2); max-width: 18ch; }
.reveal .sec-head__num::before { transform: scaleX(0); transform-origin: left; transition: transform .9s var(--ease) .1s; }
.reveal.is-in .sec-head__num::before { transform: none; }

/* ---------- Channels (irregular grid) ---------- */
.channels { padding-top: var(--sec); }
.channels__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 24px); grid-auto-flow: dense; }
.chan { position: relative; display: block; overflow: hidden; text-decoration: none; color: var(--ink); background: var(--surface); isolation: isolate; min-height: 360px; }
.chan__media { position: absolute; inset: 0; z-index: -1; }
.chan__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; filter: saturate(.9) brightness(.82); }
.chan::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(8, 9, 14, .88) 0%, rgba(8, 9, 14, 0) 55%); }
.chan:hover .chan__media img { transform: scale(1.05); filter: saturate(1) brightness(.95); }
.chan__ch { position: absolute; top: 18px; left: 20px; color: var(--accent); font-size: 12px; }
.chan__name { position: absolute; left: 20px; bottom: 44px; font-size: clamp(38px, 4.6vw, 76px); line-height: .95; }
.chan__band { position: absolute; left: 20px; bottom: 18px; color: var(--ink2); font-size: 11.5px; }
.chan__go { position: absolute; right: 18px; bottom: 16px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(239, 232, 218, .4); transition: background .3s, color .3s, border-color .3s; }
.chan:hover { color: var(--ink); }
.chan:hover .chan__go { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.chan--1 { grid-column: 1 / span 7; grid-row: span 2; min-height: 640px; }
.chan--2 { grid-column: 8 / span 5; margin-top: 90px; min-height: 420px; }
.chan--3 { grid-column: 8 / span 5; min-height: 380px; }
.chan--4 { grid-column: 2 / span 9; min-height: 340px; margin-top: -10px; }
.chan--4 .chan__media img { object-position: center 40%; }

/* ---------- Rail + cards ---------- */
.rail-sec { padding-top: var(--sec); }
.rail-ctrl { display: flex; align-items: center; gap: 6px; }
.rail-ctrl [data-rail-prev] .icon { transform: rotate(180deg); }
.rail-ctrl .icon-btn { border: 1px solid var(--line2); }
.rail-ctrl .link-arrow { margin-left: 14px; }
.rail { position: relative; }
.rail__list { list-style: none; display: grid; grid-auto-flow: column; grid-auto-columns: clamp(230px, 22vw, 330px); gap: clamp(12px, 1.6vw, 22px); overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--gut) 8px; scroll-padding-inline: var(--gut); scrollbar-width: none; }
.rail__list::-webkit-scrollbar { display: none; }
.rail__list .card { scroll-snap-align: start; }
.rail__list .card:nth-child(even) { margin-top: 48px; }
.rail__scale { position: relative; margin: 26px var(--gut) 0; height: 16px; background: linear-gradient(to right, var(--line2) 1px, transparent 1px) 0 100% / 12px 8px repeat-x, linear-gradient(to right, var(--line2) 1px, transparent 1px) 0 100% / 60px 16px repeat-x; }
.rail__scale span { position: absolute; top: -4px; bottom: 0; left: 0; width: var(--needle); background: var(--accent); box-shadow: 0 0 10px var(--accent); transition: left .2s linear; }

.card { list-style: none; position: relative; display: flex; flex-direction: column; min-width: 0; }
.card__media { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; background: var(--surface); }
.card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .6s var(--ease), transform 1s var(--ease); }
.card__img--alt { opacity: 0; }
.card:hover .card__img--alt, .card__media:focus-visible .card__img--alt { opacity: 1; }
.card:hover .card__img { transform: scale(1.03); }
.card__freq { position: absolute; top: 10px; left: 10px; padding: 4px 7px; background: rgba(13, 14, 21, .78); color: var(--accent); font-size: 10.5px; }
.card__body { padding: 14px 0 0; display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; }
.card__title { font: 500 15.5px/1.3 var(--f-sans); grid-column: 1; }
.card__title a { text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card__meta { grid-column: 1; margin: 0; color: var(--muted); font-size: 13px; }
.card__price { grid-column: 2; grid-row: 1; margin: 0; font-size: 15px; text-align: right; white-space: nowrap; }
.card__sizes { grid-column: 1 / -1; list-style: none; display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; position: relative; z-index: 1; }
.card__sizes a { display: grid; place-items: center; min-width: 32px; height: 28px; padding: 0 6px; border: 1px solid var(--line2); font: 500 11px/1 var(--f-mono); text-decoration: none; color: var(--ink2); }
.card__sizes a:hover { border-color: var(--accent); color: var(--accent); }
.card__sizes a.is-out { opacity: .35; text-decoration: line-through; }
.card__one { grid-column: 1 / -1; margin: 8px 0 0; }

/* ---------- Liner notes (paper) ---------- */
.paper { background: var(--paper); color: var(--paper-ink); }
.paper a:hover { color: var(--accent-deep); }
.paper .muted { color: var(--paper-ink2); }
.paper .label, .paper .eyebrow { color: var(--paper-ink2); }
.notes { margin-top: var(--sec); padding: var(--sec) 0; position: relative; overflow: hidden; }
.notes__in { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0 clamp(16px, 2vw, 32px); position: relative; }
.notes__label { grid-column: 1 / -1; color: var(--accent-deep); margin-bottom: 28px; }
.notes__quote { grid-column: 1 / span 8; font-size: clamp(34px, 4.8vw, 78px); line-height: 1.02; margin-bottom: 48px; position: relative; z-index: 2; }
.notes__body { grid-column: 1 / span 5; font-size: 17px; color: var(--paper-ink2); align-self: start; }
.notes__body .link-arrow { color: var(--paper-ink); margin-top: 12px; }
.notes__img { margin: 0; position: relative; }
.notes__img img { width: 100%; }
.notes__img--1 { grid-column: 7 / span 4; grid-row: 3 / span 2; margin-top: -40px; z-index: 1; }
.notes__img--2 { grid-column: 5 / span 3; grid-row: 4; margin-top: -120px; z-index: 2; box-shadow: 0 0 0 10px var(--paper); align-self: end; margin-bottom: -60px; }
.notes__img--3 { grid-column: 11 / span 2; grid-row: 2 / span 2; margin-top: 30px; }
.notes__img::after { content: attr(data-cap); }

/* ---------- Feature ---------- */
.feature { padding-top: calc(var(--sec) + 40px); }
.feature__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 24px); align-items: start; }
.feature__main { grid-column: 1 / span 6; grid-row: 1 / span 2; background: var(--surface); }
.feature__main img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.feature__detail { grid-column: 7 / span 3; margin: 90px 0 0; background: var(--surface); }
.feature__front { grid-column: 10 / span 3; margin: 0; background: var(--surface); }
.feature__detail img, .feature__front img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.feature__info { grid-column: 7 / span 5; grid-row: 2; padding-top: 12px; }
.feature__title { font-size: var(--fs-h2); margin: 10px 0 8px; }
.feature__lyric { font-size: 26px; color: var(--ink2); margin-bottom: 16px; }
.feature__story { color: var(--ink2); max-width: 52ch; }
.feature__price { font-size: 20px; margin: 18px 0 22px; }

/* ---------- Tracklist ---------- */
.tracks { padding-top: var(--sec); position: relative; }
.tracklist { list-style: none; border-top: 1px solid var(--line); }
.track { display: grid; grid-template-columns: 44px 110px minmax(0, 1.6fr) minmax(0, 1fr) auto 40px; align-items: center; gap: 16px; padding: 18px 8px; border-bottom: 1px solid var(--line); text-decoration: none; position: relative; transition: background .3s, padding .4s var(--ease); }
.track__thumb { display: none; }
.track__n { color: var(--muted); }
.track__freq { color: var(--accent); }
.track__name { font: 400 clamp(22px, 2.2vw, 32px)/1.1 var(--f-serif); }
.track__ch { color: var(--ink2); font-size: 14px; }
.track__price { font-size: 15px; white-space: nowrap; }
.track__go { justify-self: end; opacity: 0; transform: translateX(-8px); transition: opacity .3s, transform .3s var(--ease); }
.track:hover { background: var(--surface); padding-left: 20px; color: var(--ink); }
.track:hover .track__name { color: var(--accent); }
.track:hover .track__go { opacity: 1; transform: none; color: var(--accent); }
.track-peek { position: fixed; left: 0; top: 0; z-index: 40; width: 220px; pointer-events: none; opacity: 0; transform: translate(-50%, -50%) scale(.9) rotate(-3deg); transition: opacity .25s, transform .35s var(--ease); }
.track-peek.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-3deg); }
.track-peek img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; box-shadow: 0 20px 50px rgba(0, 0, 0, .5); border: 1px solid var(--line2); }

/* ---------- Look ---------- */
.look { padding-top: var(--sec); }
.look__sub { font-size: clamp(22px, 2vw, 30px); color: var(--ink2); max-width: 22ch; margin: 0; }
.look__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 24px); align-items: start; }
.look__item { margin: 0; position: relative; }
.look__item img { width: 100%; height: 100%; object-fit: cover; }
.look__item figcaption { margin-top: 10px; font-size: 13.5px; }
.look__item figcaption a { text-decoration: none; display: inline-flex; gap: 8px; align-items: center; }
.look__item figcaption .mono { color: var(--accent); }
.look__item figcaption .icon { width: 16px; }
.look__item--a { grid-column: 1 / span 4; }
.look__item--b { grid-column: 5 / span 5; margin-top: 120px; }
.look__item--c { grid-column: 10 / span 3; margin-top: 40px; }
.look__item--d { grid-column: 2 / span 3; margin-top: 28px; }
.look__item--e { grid-column: 6 / span 7; margin-top: 60px; }

/* ---------- Signal notes ---------- */
.signal { padding-block: var(--sec); }
.signal__list { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.signal__list li { padding: 22px 20px 22px 0; display: flex; flex-direction: column; gap: 6px; border-right: 1px solid var(--line); padding-left: 20px; }
.signal__list li:first-child { padding-left: 0; }
.signal__list li:last-child { border-right: 0; }
.signal__list .mono { color: var(--accent); }
.signal__list strong { font: 400 24px/1.1 var(--f-serif); }
.signal__list span:last-child { color: var(--ink2); font-size: 14px; }

/* ---------- Footer ---------- */
.site-foot { border-top: 1px solid var(--line); background: #0a0b11; margin-top: 0; }
.site-foot > .dial { max-width: var(--max); margin: 0 auto; padding-inline: var(--gut); }
.site-foot__in { max-width: var(--max); margin: 0 auto; padding: 56px var(--gut) 40px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr) 1.3fr; gap: 32px; }
.foot-brand__line { font-size: 30px; margin: 18px 0 10px; }
.foot-col ul, .foot-col .menu { list-style: none; display: grid; gap: 8px; margin-top: 16px; }
.foot-col a { text-decoration: none; color: var(--ink2); font-size: 14.5px; }
.foot-col a:hover { color: var(--accent); }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink2); font-size: 14.5px; }
.foot-contact .icon { width: 18px; height: 18px; margin-top: 2px; color: var(--muted); }
.foot-region { margin-top: 18px; display: inline-flex; gap: 8px; align-items: center; background: none; border: 1px solid var(--line2); padding: 10px 14px; font-size: 13.5px; }
.foot-region .icon { width: 16px; height: 16px; }
.foot-region:hover { border-color: var(--accent); }
.site-foot__base { max-width: var(--max); margin: 0 auto; padding: 20px var(--gut) 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-foot__base p { margin: 0; color: var(--ink2); }
.site-foot__base .icon { display: inline; width: 14px; height: 14px; vertical-align: -2px; }

/* ---------- Archive ---------- */
.band { position: relative; padding: clamp(48px, 7vw, 110px) 0 0; overflow: hidden; isolation: isolate; }
.band--img { min-height: clamp(360px, 42vw, 560px); display: flex; flex-direction: column; justify-content: flex-end; margin-top: calc(-1 * var(--head-h)); padding-top: calc(var(--head-h) + 60px); }
.band__media { position: absolute; inset: 0; z-index: -1; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band--img::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(13, 14, 21, 1) 0%, rgba(13, 14, 21, .35) 55%, rgba(13, 14, 21, .55) 100%); }
.band__in { padding-bottom: 28px; }
.band__ch { color: var(--accent); margin: 0 0 14px; }
.band__title { font-size: var(--fs-h1); line-height: .95; }
.band__desc { max-width: 560px; color: var(--ink2); margin: 18px 0 0; font-size: 17px; }
.band > .dial { max-width: var(--max); margin: 0 auto; padding-inline: var(--gut); }
.shop { padding-top: 28px; padding-bottom: var(--sec); }
.shop__bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px; border: 1px solid var(--line2); text-decoration: none; font-size: 14px; }
.chip .mono { color: var(--muted); font-size: 10.5px; }
.chip:hover, .chip[aria-current] { border-color: var(--accent); color: var(--accent); }
.chip[aria-current] .mono { color: var(--accent); }
.shop__tools { display: flex; align-items: center; gap: 18px; }
.woocommerce-result-count { margin: 0; color: var(--muted); font-size: 13.5px; }
.woocommerce-ordering select, .shop select { background: var(--surface); border: 1px solid var(--line2); height: 40px; padding: 0 36px 0 12px; font-size: 14px; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink2) 50%), linear-gradient(135deg, var(--ink2) 50%, transparent 50%); background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.woocommerce-ordering { margin: 0; }
.grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px clamp(12px, 1.6vw, 24px); }
.grid > .card:nth-child(4n+2), .grid > .card:nth-child(4n+4) { transform: translateY(48px); }
.grid--4 > .card:nth-child(4n+2), .grid--4 > .card:nth-child(4n+4) { transform: none; }
.grid__insert { grid-column: span 2; list-style: none; position: relative; margin-top: 48px; }
.grid__insert img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.grid__insert p { position: absolute; left: 20px; bottom: 16px; right: 20px; margin: 0; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.05; text-shadow: 0 2px 20px rgba(0, 0, 0, .6); }
.woocommerce-pagination { margin-top: 110px; }
.woocommerce-pagination ul { list-style: none; display: flex; gap: 6px; justify-content: center; }
.woocommerce-pagination a, .woocommerce-pagination span { display: grid; place-items: center; min-width: 44px; height: 44px; border: 1px solid var(--line2); text-decoration: none; font-family: var(--f-mono); font-size: 13px; }
.woocommerce-pagination .current { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* ---------- Product page ---------- */
.crumbs { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px; color: var(--muted); font-size: 11.5px; }
.crumbs a { text-decoration: none; color: var(--ink2); }
.crumbs [aria-current] { color: var(--accent); }
.pdp__grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 72px); align-items: start; }
.gal { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gal__item { margin: 0; background: var(--surface); overflow: hidden; }
.gal__item img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.gal__item--1, .gal__item--4 { grid-column: 1 / -1; }
.gal__item--1 img { aspect-ratio: 4 / 5; }
.gal__item--3 { margin-top: 64px; }
.gal__item--4 img { aspect-ratio: 4 / 5; }
.gal__count { display: none; }
.pdp__buy { position: sticky; top: calc(var(--head-h) + 20px); }
.buybox__freq { color: var(--ink2); margin: 0 0 14px; font-size: 11.5px; }
.buybox__title { font-size: clamp(40px, 4.4vw, 72px); line-height: .98; margin-bottom: 12px; }
.buybox__lyric { font-size: 24px; color: var(--ink2); margin-bottom: 18px; }
.buybox__price { font-size: 24px; margin: 0 0 18px; }
.buybox__price .price__code { font-size: 11px; }
.buybox__colour, .buybox__contents { display: flex; gap: 12px; align-items: baseline; margin: 0 0 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.buy { margin-bottom: 22px; }
.buy__sizes { border: 0; padding: 0; margin: 0 0 18px; }
.buy__legend { display: flex; justify-content: space-between; width: 100%; margin-bottom: 10px; }
.buy__guide { font-size: 13px; color: var(--ink2); }
.sizes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.size { position: relative; }
.size input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.size span { display: grid; place-items: center; height: 50px; border: 1px solid var(--line2); font: 500 14px/1 var(--f-mono); transition: border-color .2s, background .2s, color .2s; }
.size input:hover + span { border-color: var(--ink); }
.size input:checked + span { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.size input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.size.is-out span { opacity: .35; text-decoration: line-through; }
.buy.is-invalid .sizes span { border-color: var(--err); }
.buy__row { display: flex; gap: 10px; }
.qty { display: flex; border: 1px solid var(--line2); height: 52px; }
.qty__btn { width: 38px; background: none; border: 0; font-size: 18px; color: var(--ink2); }
.qty__btn:hover { color: var(--accent); }
.qty input { width: 40px; text-align: center; background: none; border: 0; font-family: var(--f-mono); -moz-appearance: textfield; }
.qty input::-webkit-inner-spin-button, .qty input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.buy__msg { min-height: 1.4em; margin: 10px 0 0; color: var(--err); }
.buy__msg.is-ok { color: var(--ok); }
.buybox__facts { list-style: none; display: grid; gap: 12px; padding: 18px 0; border-block: 1px solid var(--line); margin-bottom: 8px; }
.buybox__facts li { display: flex; gap: 12px; font-size: 14px; color: var(--ink2); }
.buybox__facts .icon { color: var(--accent); width: 18px; height: 18px; margin-top: 2px; }
.buybox__facts strong { color: var(--ink); font-weight: 600; }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-stretch: 85%; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: ""; width: 12px; height: 12px; background: linear-gradient(currentColor, currentColor) center / 12px 1.5px no-repeat, linear-gradient(currentColor, currentColor) center / 1.5px 12px no-repeat; transition: transform .3s var(--ease); }
.acc details[open] summary::after { transform: rotate(45deg); }
.acc__body { padding-bottom: 20px; color: var(--ink2); font-size: 15px; }
.specs { display: grid; grid-template-columns: 110px 1fr; gap: 8px 16px; margin: 0; }
.specs dt { color: var(--muted); font-size: 13px; }
.specs dd { margin: 0; color: var(--ink); font-size: 14px; }
.size-table { margin-bottom: 20px; }
.table-scroll { overflow-x: auto; }
.size-table table, .prose table { width: 100%; border-collapse: collapse; font-size: 14px; }
.size-table th, .size-table td, .prose th, .prose td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.size-table th, .size-table td { white-space: nowrap; }
.prose td, .prose th { overflow-wrap: anywhere; }
.size-table thead th, .prose thead th { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.related-wrap { padding-top: var(--sec); padding-bottom: var(--sec); }

/* ---------- Pages on paper ---------- */
.page:not(body) { padding: clamp(40px, 6vw, 90px) 0 var(--sec); }
.page__head { margin-bottom: 36px; }
.page__freq { color: var(--accent-deep); margin: 0 0 16px; text-transform: uppercase; }
.page__title { font-size: var(--fs-h1); line-height: .95; max-width: 16ch; }
.page__updated { margin-top: 18px; color: var(--paper-ink2); }
.page__lede { font-size: clamp(24px, 2.4vw, 34px); max-width: 30ch; color: var(--paper-ink2); margin-bottom: 40px; }
.prose { max-width: 820px; font-size: 16.5px; line-height: 1.7; }
.page__cols { display: grid; grid-template-columns: minmax(0, 820px) 220px; gap: clamp(40px, 7vw, 120px); align-items: start; }
.page__cols .prose { padding-left: clamp(0px, 8vw, 140px); box-sizing: content-box; }
.toc { position: sticky; top: calc(var(--head-h) + 32px); border-left: 1px solid var(--paper-line); padding-left: 18px; }
.toc[hidden] { display: none; }
.toc ol { list-style: none; margin: 12px 0 0; display: grid; gap: 8px; }
.toc a { text-decoration: none; font-size: 14px; color: var(--paper-ink2); display: block; line-height: 1.35; }
.toc a:hover, .toc a.is-on { color: var(--accent-deep); }
.prose h2 { font: 400 clamp(28px, 2.8vw, 40px)/1.1 var(--f-serif); margin: 2.2em 0 .6em; padding-top: 20px; border-top: 1px solid var(--paper-line); position: relative; }
.prose h2::before { content: ""; position: absolute; top: -1px; left: 0; width: 64px; height: 8px; background: repeating-linear-gradient(90deg, var(--accent-deep) 0 1px, transparent 1px 5px); }
.prose h3 { font: 600 17px/1.3 var(--f-sans); margin: 1.6em 0 .5em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--paper-ink); text-decoration-color: var(--accent-deep); }
.prose strong { font-weight: 600; }
.paper .prose th, .paper .prose td, .paper .size-table th, .paper .size-table td { border-color: var(--paper-line); }
.paper .size-table thead th, .paper .prose thead th { color: var(--paper-ink2); }
.prose .note { background: var(--paper-2); padding: 18px 20px; border-left: 3px solid var(--accent-deep); margin: 1.4em 0; font-size: 15px; }
.prose details { border-bottom: 1px solid var(--paper-line); }
.prose details summary { cursor: pointer; padding: 16px 0; font: 400 22px/1.25 var(--f-serif); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.prose details summary::after { content: "+"; font-family: var(--f-mono); color: var(--accent-deep); }
.prose details[open] summary::after { content: "–"; }
.prose details > *:not(summary) { margin-top: 0; }
.prose details > p:last-child { padding-bottom: 12px; }
.prose .withdrawal { border: 1px dashed var(--paper-ink2); padding: 20px 22px; font-size: 15px; }
.measure { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: center; margin: 28px 0 36px; }
.measure svg { color: var(--paper-ink); width: 200px; }
.measure ol { margin: 0; }

/* ---------- WooCommerce pages (cart, checkout, account) on paper ---------- */
.page--shop .page__title { font-size: clamp(44px, 5vw, 80px); }
.page--shop input[type=text], .page--shop input[type=email], .page--shop input[type=tel], .page--shop input[type=password], .page--shop input[type=number], .page--shop select, .page--shop textarea,
.form input[type=text], .form input[type=email], .form select, .form textarea {
	width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line2); background: var(--surface); color: var(--ink); border-radius: 0; font-size: 16px;
}
.paper input[type=text], .paper input[type=email], .paper input[type=tel], .paper input[type=password], .paper input[type=number], .paper select, .paper textarea { background: #f7f2e7; border-color: var(--paper-line); color: var(--paper-ink); }
.page--shop select, .form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.page--shop input:focus, .page--shop select:focus, .page--shop textarea:focus, .form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--accent); outline-offset: 0; border-color: transparent; }
.paper input:focus, .paper select:focus, .paper textarea:focus { outline-color: var(--accent-deep); }
.page--shop label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.page--shop .required { color: var(--err-paper); text-decoration: none; }
.page--shop .form-row { margin: 0 0 16px; }
.page--shop .button, .page--shop button.button, .page--shop a.button, .page--shop input.button, #place_order {
	display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; border: 1px solid var(--paper-ink); background: var(--paper-ink); color: var(--paper); font: 600 13px/1 var(--f-sans); font-stretch: 85%; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; cursor: pointer; border-radius: 0;
}
.page--shop .button:hover { background: #2a2c38; color: var(--paper); }
.page--shop .button:disabled, .page--shop .button[disabled] { opacity: .5; cursor: not-allowed; }
#place_order, .page--shop .checkout-button { background: var(--accent); border-color: var(--accent); color: var(--paper-ink); width: 100%; min-height: 56px; font-size: 14px; }
#place_order:hover, .page--shop .checkout-button:hover { background: #ffbb62; color: var(--paper-ink); }
.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error, .notice { list-style: none; margin: 0 0 24px; padding: 14px 18px; border-left: 3px solid var(--accent); background: var(--surface); display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: 15px; }
.paper .woocommerce-message, .paper .woocommerce-info, .paper .woocommerce-error, .paper .notice { background: #f7f2e7; }
.woocommerce-error, .notice--err { border-color: var(--err-paper); }
.woocommerce-message, .notice--ok { border-color: var(--ok-paper); }
.woocommerce-message .button, .woocommerce-info .button { order: 2; min-height: 40px; }
.notice--ok { color: var(--ok); } .notice--err { color: var(--err); }
.paper .notice--ok { color: var(--ok-paper); } .paper .notice--err { color: var(--err-paper); }

.woocommerce-cart-form { margin-bottom: 30px; }
.shop_table { width: 100%; border-collapse: collapse; font-size: 15px; }
.shop_table th, .shop_table td { padding: 14px 10px; border-bottom: 1px solid var(--paper-line); text-align: left; vertical-align: middle; }
.shop_table thead th { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--paper-ink2); }
.shop_table .product-thumbnail img { width: 72px; aspect-ratio: 3 / 4; object-fit: cover; }
.shop_table .product-name a { text-decoration: none; font-weight: 600; }
.shop_table .product-remove a { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--paper-line); text-decoration: none; font-size: 18px; color: var(--paper-ink2); }
.shop_table .product-remove a:hover { border-color: var(--err-paper); color: var(--err-paper); }
.shop_table .variation { display: grid; grid-template-columns: auto 1fr; gap: 2px 6px; margin: 4px 0 0; font-size: 13px; color: var(--paper-ink2); }
.shop_table .variation dt, .shop_table .variation dd, .shop_table .variation p { margin: 0; }
.shop_table .quantity input { width: 72px; text-align: center; }
.shop_table .actions { padding-top: 20px; }
.shop_table .coupon { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.shop_table .coupon input { width: 180px; }
.shop_table .coupon label { display: none; }
.shop_table button[name=update_cart] { float: right; }
.cart-collaterals { display: grid; grid-template-columns: 1fr minmax(320px, 440px); gap: 40px; }
.cart_totals { grid-column: 2; background: #f7f2e7; border: 1px solid var(--paper-line); padding: 26px; }
.cart_totals h2 { font: 400 32px/1 var(--f-serif); margin-bottom: 16px; }
.cart_totals .shop_table th { width: 40%; font-weight: 600; font-size: 14px; }
.woocommerce-shipping-methods { list-style: none; }
.woocommerce-shipping-destination, .woocommerce-shipping-calculator { font-size: 13px; color: var(--paper-ink2); }
.shipping-calculator-form { margin-top: 10px; }
.wc-proceed-to-checkout { margin-top: 18px; }
.cart-cur { color: var(--paper-ink2); margin-bottom: 8px; }
.cart-facts { list-style: none; display: grid; gap: 10px; margin: 20px 0; color: var(--paper-ink2); }
.cart-facts li { display: flex; gap: 10px; align-items: flex-start; }
.cart-facts li > span { flex: 1; }
.cart-facts .icon { color: var(--accent-deep); }
.empty-bag { text-align: center; padding: 40px 0; max-width: 520px; margin: 0 auto; }
.empty-bag__img { width: min(320px, 70%); margin: 0 auto 26px; aspect-ratio: 1; object-fit: cover; }
.empty-bag h2 { font-size: clamp(36px, 4vw, 56px); margin: 10px 0 12px; }
.empty-bag .eyebrow { color: var(--accent-deep); }
.shop .empty-bag .eyebrow { color: var(--accent); }
.return-to-shop { text-align: center; margin-top: 10px; }

form.checkout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, 1fr); grid-template-rows: auto 1fr; gap: 20px clamp(24px, 4vw, 64px); align-items: start; }
form.checkout > .woocommerce-NoticeGroup { grid-column: 1 / -1; }
#customer_details { grid-column: 1; grid-row: 1 / span 2; }
.woocommerce-account-fields label, #ship-to-different-address label, .create-account label { display: inline-flex !important; gap: 10px; align-items: center; font-weight: 600; }
#order_review_heading { grid-column: 2; grid-row: 1; font: 400 32px/1 var(--f-serif); margin: 0; align-self: start; padding-top: 2px; }
#order_review { grid-column: 2; grid-row: 2; background: #f7f2e7; border: 1px solid var(--paper-line); padding: 24px; position: sticky; top: calc(var(--head-h) + 20px); }
.woocommerce-billing-fields h3, .woocommerce-shipping-fields h3, .woocommerce-additional-fields h3 { font: 400 28px/1.1 var(--f-serif); margin: 0 0 18px; }
.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-row-wide, #billing_address_1_field, #billing_address_2_field, #shipping_address_1_field, #shipping_address_2_field, #billing_country_field, #shipping_country_field, #billing_email_field { grid-column: 1 / -1; }
#ship-to-different-address { font: 600 15px/1.3 var(--f-sans); margin: 22px 0 14px; }
#ship-to-different-address label { display: flex; gap: 10px; align-items: center; }
.woocommerce-checkout-review-order-table td, .woocommerce-checkout-review-order-table th { font-size: 14px; }
.woocommerce-checkout-review-order-table .order-total th, .woocommerce-checkout-review-order-table .order-total td { font-size: 18px; font-weight: 600; }
#payment { margin-top: 18px; }
#payment .payment_methods { list-style: none; border-top: 1px solid var(--paper-line); padding-top: 12px; }
#payment .payment_methods li { padding: 10px 0; }
#payment .payment_box { background: var(--paper); padding: 14px; margin-top: 10px; font-size: 14px; }
#payment .woocommerce-info { font-size: 14px; }
.woocommerce-terms-and-conditions-wrapper { font-size: 13.5px; margin: 16px 0; color: var(--paper-ink2); }
.woocommerce-terms-and-conditions-wrapper .form-row label { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: 14px; color: var(--paper-ink); }
.woocommerce-form__input-checkbox { accent-color: var(--paper-ink); width: 18px; height: 18px; margin: 2px 0 0; flex: none; }
.checkout-notes { display: grid; gap: 8px; margin: 14px 0 18px; color: var(--paper-ink2); }
.checkout-notes p { margin: 0; }
.checkout-notes .icon { display: inline; width: 15px; height: 15px; vertical-align: -3px; }
.woocommerce-form-coupon-toggle .woocommerce-info, .woocommerce-form-login-toggle .woocommerce-info { grid-column: 1 / -1; }
.checkout_coupon, .woocommerce-form-login { background: #f7f2e7; padding: 20px; border: 1px solid var(--paper-line); margin-bottom: 24px; }
.woocommerce-order-overview { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin: 20px 0; }
.woocommerce-order-overview li { background: #f7f2e7; padding: 14px; font-size: 13px; }
.woocommerce-order-overview strong { display: block; font-size: 16px; margin-top: 4px; }
.thanks-note { background: #f7f2e7; padding: 16px 18px; border-left: 3px solid var(--accent-deep); margin: 20px 0; }
.woocommerce-customer-details address { font-style: normal; background: #f7f2e7; padding: 16px; }
.woocommerce-MyAccount-navigation ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 30px; }
.woocommerce-MyAccount-navigation a { display: block; padding: 10px 14px; border: 1px solid var(--paper-line); text-decoration: none; font-size: 14px; }
.woocommerce-MyAccount-navigation .is-active a { background: var(--paper-ink); color: var(--paper); border-color: var(--paper-ink); }
.u-columns.col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.woocommerce-form-login, .woocommerce-form-register { max-width: 520px; }
.woocommerce-form-login h2, .u-column1 h2, .u-column2 h2 { font: 400 32px/1.1 var(--f-serif); margin-bottom: 18px; }
.woocommerce-form-login__rememberme { display: flex !important; gap: 8px; align-items: center; font-weight: 400 !important; margin: 10px 0; }
.lost_password { font-size: 14px; }
.woocommerce-password-strength, .woocommerce-password-hint { font-size: 13px; }
.show-password-input { display: none; }
.woocommerce-privacy-policy-text { font-size: 13px; color: var(--paper-ink2); }
.blockUI.blockOverlay { background: rgba(236, 229, 214, .6) !important; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(28px, 6vw, 100px); padding-top: clamp(40px, 6vw, 90px); padding-bottom: var(--sec); }
.contact__title { font-size: var(--fs-h1); line-height: .95; margin: 16px 0 20px; }
.contact__lede { color: var(--ink2); font-size: 17px; max-width: 46ch; }
.contact__ways { list-style: none; display: grid; gap: 0; margin: 28px 0; border-top: 1px solid var(--line); }
.contact__ways li { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.contact__ways a { font-size: 18px; }
.contact__img { margin: 0; max-width: 360px; }
.contact__img img { aspect-ratio: 3 / 4; object-fit: cover; }
.contact__form { background: var(--surface); border: 1px solid var(--line); padding: clamp(20px, 3vw, 40px); align-self: start; position: sticky; top: calc(var(--head-h) + 20px); }
.contact__form > .label { margin-bottom: 20px; }
.form { display: grid; gap: 16px; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field > span { font-size: 13px; font-weight: 600; color: var(--ink2); }
.form textarea { resize: vertical; min-height: 140px; }
.form .btn { justify-self: start; }
.contact__quick { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink2); }
.contact__quick .label { margin-bottom: 6px; }

/* ---------- Story / About ---------- */
.story-hero { position: relative; min-height: clamp(460px, 62vw, 760px); margin-top: calc(-1 * var(--head-h)); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.story-hero__media { position: absolute; inset: 0; z-index: -1; }
.story-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.story-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8, 9, 14, .85), rgba(8, 9, 14, .1) 70%), linear-gradient(0deg, rgba(8, 9, 14, .8), transparent 50%); }
.story-hero__in { padding-bottom: clamp(40px, 6vw, 90px); padding-top: calc(var(--head-h) + 80px); }
.story-hero__title { font-size: var(--fs-h1); line-height: .95; margin: 16px 0 18px; max-width: 12ch; }
.story-hero__lede { font-size: clamp(22px, 2.2vw, 32px); color: var(--ink2); max-width: 30ch; }
.story { padding: var(--sec) 0; }
.story__in { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0 clamp(16px, 2vw, 32px); }
.story__img { margin: 0; }
.story__img img { width: 100%; object-fit: cover; }
.story__img--a { grid-column: 1 / span 4; grid-row: 1 / span 2; position: sticky; top: calc(var(--head-h) + 30px); align-self: start; }
.story__img--a img { aspect-ratio: 3 / 4; }
.story__text { grid-column: 6 / span 6; max-width: none; }
.story__text > p:first-child { font: 400 clamp(26px, 2.6vw, 38px)/1.2 var(--f-serif); }
.story__img--b { grid-column: 8 / span 4; margin-top: 40px; }
.story__img--b img { aspect-ratio: 1; }
.story-chan { padding-top: var(--sec); padding-bottom: calc(var(--sec) * .6); }

/* ---------- 404 ---------- */
.lost { position: relative; min-height: calc(100svh - 36px); margin-top: calc(-1 * var(--head-h)); display: flex; flex-direction: column; justify-content: center; overflow: hidden; isolation: isolate; padding: calc(var(--head-h) + 40px) 0 140px; }
.lost__media { position: absolute; inset: 0; z-index: -1; }
.lost__media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.lost__title { font-size: var(--fs-h1); line-height: .95; margin: 16px 0 18px; max-width: 12ch; }
.lost__in p { color: var(--ink2); max-width: 44ch; }
.lost > .dial { position: absolute; left: var(--gut); right: var(--gut); bottom: 18px; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
	.nav__list a { padding: 10px 9px; font-size: 14px; }
	.nav__list a sup { left: 9px; }
	.site-foot__in { grid-template-columns: 1fr 1fr 1fr; }
	.foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 1100px) {
	.nav { display: none; }
	.menu-toggle { display: inline-grid; }
	.site-head__tools { margin-left: auto; }
	.grid { grid-template-columns: repeat(3, 1fr); }
	.grid > .card:nth-child(n) { transform: none; }
	.grid > .card:nth-child(3n+2) { transform: translateY(40px); }
	.spin { width: 290px; }
	.track { grid-template-columns: 36px 90px minmax(0, 1fr) auto 24px; }
	.track__ch { display: none; }
}
@media (max-width: 900px) {
	:root { --head-h: 60px; }
	.strip__msg { display: none; }
	.hero { min-height: max(640px, calc(100svh - 36px)); }
	.hero__in { padding-bottom: 270px; }
	.hero__shade { background: linear-gradient(0deg, rgba(8, 9, 14, .96) 8%, rgba(8, 9, 14, .35) 55%, rgba(8, 9, 14, .6) 100%); }
	.spin { left: var(--gut); right: var(--gut); width: auto; bottom: 168px; padding: 10px 12px; }
	.spin__label { display: none; }
	.spin__item { grid-template-columns: 44px 1fr; gap: 12px; }
	.spin__img { width: 44px; height: 58px; }
	.spin__txt { display: grid; grid-template-columns: 1fr auto; column-gap: 12px; }
	.spin__freq { grid-column: 1 / -1; }
	.spin__txt strong { font-size: 18px; }
	.spin__price { grid-column: 2; grid-row: 2; }
	.hero__dial { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; padding-top: 58px; padding-bottom: 14px; scroll-snap-type: x proximity; }
	.hero__dial::-webkit-scrollbar { display: none; }
	.hero__dial .dial { width: 900px; max-width: none; }
	.hero__dial .dial__ch span { font-size: 12.5px; }
	.hero__dial .dial__read { display: none; }
	.hero__dial .dial__needle { top: 0; }
	.channels__grid { grid-template-columns: 1fr 1fr; }
	.chan--1 { grid-column: 1 / -1; grid-row: auto; min-height: 460px; }
	.chan--2 { grid-column: 1; margin-top: 0; min-height: 320px; }
	.chan--3 { grid-column: 2; margin-top: 48px; min-height: 320px; }
	.chan--4 { grid-column: 1 / -1; margin-top: 0; min-height: 280px; }
	.chan__name { font-size: clamp(32px, 7vw, 56px); }
	.notes__quote { grid-column: 1 / -1; }
	.notes__body { grid-column: 1 / -1; margin-bottom: 40px; }
	.notes__img--1 { grid-column: 1 / span 8; grid-row: auto; margin-top: 0; }
	.notes__img--2 { grid-column: 6 / span 7; grid-row: auto; margin-top: -90px; margin-bottom: 0; }
	.notes__img--3 { display: none; }
	.feature__main { grid-column: 1 / -1; grid-row: auto; }
	.feature__detail { grid-column: 1 / span 6; margin-top: 0; }
	.feature__front { grid-column: 7 / span 6; margin-top: 40px; }
	.feature__info { grid-column: 1 / -1; grid-row: auto; }
	.look__grid { grid-template-columns: repeat(6, 1fr); }
	.look__item--a { grid-column: 1 / span 4; }
	.look__item--b { grid-column: 1 / -1; margin-top: 0; }
	.look__item--c { grid-column: 4 / span 3; margin-top: -120px; }
	.look__item--d { grid-column: 1 / span 3; margin-top: 0; }
	.look__item--e { grid-column: 1 / -1; margin-top: 0; }
	.signal__list { grid-template-columns: 1fr 1fr; }
	.signal__list li:nth-child(2) { border-right: 0; }
	.signal__list li:nth-child(3) { padding-left: 0; border-top: 1px solid var(--line); }
	.signal__list li:nth-child(4) { border-top: 1px solid var(--line); }
	.pdp__grid { grid-template-columns: 1fr; }
	.pdp__gallery { margin-inline: calc(-1 * var(--gut)); position: relative; }
	.gal { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 8px; padding-inline: var(--gut); scroll-padding-inline: var(--gut); scrollbar-width: none; }
	.gal::-webkit-scrollbar { display: none; }
	.gal__item { flex: 0 0 86%; scroll-snap-align: start; margin: 0 !important; }
	.gal__item img, .gal__item--1 img, .gal__item--4 img { aspect-ratio: 3 / 4; }
	.gal__count { display: block; position: absolute; right: calc(var(--gut) + 10px); bottom: 10px; background: rgba(13, 14, 21, .8); padding: 5px 8px; font-size: 11px; }
	.pdp__buy { position: static; }
	.cart-collaterals { grid-template-columns: 1fr; }
	.cart_totals { grid-column: 1; }
	form.checkout { grid-template-columns: 1fr; }
	#customer_details, #order_review_heading, #order_review { grid-column: 1; grid-row: auto; position: static; }
	form.checkout { grid-template-rows: none; }
	.contact { grid-template-columns: 1fr; }
	.contact__form { position: static; }
	.contact__img { display: none; }
	.story__in { grid-template-columns: 1fr; }
	.story__img--a { grid-column: 1; grid-row: auto; position: static; max-width: 440px; margin-bottom: 32px; }
	.story__text { grid-column: 1; }
	.story__img--b { grid-column: 1; max-width: 360px; justify-self: end; }
	.u-columns.col2-set { grid-template-columns: 1fr; }
	.page__cols { grid-template-columns: 1fr; }
	.page__cols .prose { padding-left: 0; }
	.toc { display: none !important; }
}
@media (max-width: 760px) {
	.hide-sm { display: none; }
	.strip__in { height: 34px; }
	.strip__tz { display: none; }
	.logo__word { font-size: 16px; letter-spacing: .16em; }
	.logo .mark { width: 30px; height: 30px; }
	.hero__title em { padding-left: 18px; }
	.hero__sub { font-size: 16px; max-width: 34ch; }
	.hero { justify-content: flex-start; }
	.hero__cta { flex-wrap: nowrap; }
	.hero__cta .btn { flex: 1; padding: 0 10px 0 20px; font-size: 12px; letter-spacing: .07em; white-space: nowrap; }
	.hero__cta .btn .icon { display: none; }
	.hero__cta .btn::before { left: 9px; }
	.hero__kicker { font-size: 10.5px; gap: 10px; white-space: nowrap; letter-spacing: .08em; }
	.hero__kicker .onair { flex: none; }
	.hero__in { padding-top: calc(var(--head-h) + 28px); }
	.hero__sub { display: none; }
	.hero__title { margin-bottom: 22px; font-size: clamp(50px, 14.6vw, 72px); }
	.hero__img { object-position: 50% 70%; }
	.cookie { padding: 12px 14px; flex-direction: row !important; align-items: center !important; bottom: 12px; }
	.cookie p { font-size: 12.5px; }
	.btn { min-height: 50px; }
	.hero__title { max-width: none; }
	.grid { grid-template-columns: 1fr 1fr; gap: 32px 12px; }
	.grid > .card:nth-child(n) { transform: none; }
	.grid > .card:nth-child(even) { transform: translateY(28px); }
	.grid__insert { grid-column: 1 / -1; margin-top: 28px; }
	.card__body { grid-template-columns: 1fr; }
	.card__price { grid-column: 1; grid-row: auto; text-align: left; margin-top: 2px; }
	.card__title { font-size: 14.5px; }
	.card__sizes a { min-width: 28px; height: 26px; font-size: 10.5px; padding: 0 4px; }
	.rail__list { grid-auto-columns: 64vw; }
	.rail__list .card:nth-child(even) { margin-top: 28px; }
	.rail-ctrl .icon-btn { display: none; }
	.sizes { grid-template-columns: repeat(3, 1fr); }
	.track { grid-template-columns: 30px 48px minmax(0, 1fr) auto; gap: 12px; padding: 12px 0; }
	.track:hover { padding-left: 0; }
	.track__thumb { display: block; width: 48px; height: 64px; object-fit: cover; grid-row: 1 / span 2; grid-column: 2; }
	.track__n { grid-row: 1 / span 2; }
	.track__freq { grid-column: 3; font-size: 10.5px; }
	.track__name { grid-column: 3; font-size: 22px; }
	.track__price { grid-column: 4; grid-row: 1 / span 2; font-size: 14px; }
	.track__go { display: none; }
	.track-peek { display: none; }
	.channels__grid { gap: 10px; }
	.chan--2, .chan--3 { min-height: 260px; }
	.chan__go { width: 40px; height: 40px; }
	.chan__band { font-size: 10.5px; }
	.site-foot__in { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
	.foot-contact { grid-column: 1 / -1; }
	.form__row--2 { grid-template-columns: 1fr; }
	.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper { grid-template-columns: 1fr; }
	.shop_table.cart thead { display: none; }
	.shop_table.cart tr.cart_item { display: grid; grid-template-columns: 72px 1fr auto; grid-template-areas: "thumb name remove" "thumb price qty" "thumb sub sub"; gap: 4px 12px; padding: 14px 0; border-bottom: 1px solid var(--paper-line); }
	.shop_table.cart td { border: 0; padding: 0; }
	.shop_table.cart td::before { display: none; }
	.shop_table.cart .product-remove { grid-area: remove; }
	.shop_table.cart .product-thumbnail { grid-area: thumb; display: block !important; }
	.shop_table.cart .product-name { grid-area: name; }
	.shop_table.cart .product-price { grid-area: price; font-size: 14px; color: var(--paper-ink2); }
	.shop_table.cart .product-quantity { grid-area: qty; }
	.shop_table.cart .product-subtotal { grid-area: sub; font-weight: 600; }
	.shop_table.cart .actions { display: block; }
	.shop_table button[name=update_cart] { float: none; width: 100%; margin-top: 10px; }
	.shop_table .coupon { display: flex; width: 100%; }
	.shop_table .coupon input { flex: 1; width: auto; }
	.cookie { right: var(--gut); max-width: none; flex-direction: column; align-items: flex-start; gap: 10px; }
	.toast { left: var(--gut); right: var(--gut); bottom: 16px; }
	.lang-list { grid-template-columns: repeat(2, 1fr); }
	.measure { grid-template-columns: 1fr; }
	.dial--footer .dial__ch span, .lost > .dial .dial__ch span { display: none; }
	.dial--footer .dial__ch b, .lost > .dial .dial__ch b { color: var(--ink); font-size: 11px; }
	.dial--footer { padding-top: 44px; }
	.dial__nums span:nth-child(even) { display: none; }
	.prose table { display: block; overflow-x: auto; font-size: 13.5px; }
	.prose th, .prose td { padding: 8px 8px 8px 0; min-width: 88px; }
	.contact__ways li { grid-template-columns: 90px 1fr; }
	.specs { grid-template-columns: 90px 1fr; }
}
@media (max-width: 420px) {
	.chips { flex-wrap: nowrap; overflow-x: auto; margin-inline: calc(-1 * var(--gut)); padding-inline: var(--gut); scrollbar-width: none; }
	.chip { flex: none; }
	.menu-dial strong { font-size: 28px; }
}
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
	.js .reveal { opacity: 1; transform: none; }
}
.lost__in p.accent { color: var(--accent); }
