:root {
	--ink: #0d1433;
	--ink-2: #2c3354;
	--muted: #646a82;
	--paper: #f2f2ee;
	--studio: #f7f7f5;
	--card: #ffffff;
	--line: #e2e2da;
	--navy: #2d388a;
	--cyan: #00aeef;
	--kraft: #b98a57;
	--kraft-soft: #ece1d1;
	--grad: linear-gradient(100deg, #2d388a 0%, #1b6fd0 55%, #00aeef 100%);
	--r-lg: 28px;
	--r: 18px;
	--r-sm: 12px;
	--shadow: 0 1px 2px rgba(13, 20, 51, .05), 0 12px 32px -12px rgba(13, 20, 51, .14);
	--font: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
	--head-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--head-h) + 16px); }

@media (prefers-reduced-motion: no-preference) {
	html { scroll-behavior: smooth; }
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
table { border-collapse: collapse; }

.wrap { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 40px); }
.mono { font-family: var(--mono); letter-spacing: .02em; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ico { width: 20px; height: 20px; flex: none; }

.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

.btn {
	--bg: var(--ink);
	--fg: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: var(--bg);
	color: var(--fg);
	font-weight: 600;
	font-size: 15px;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.btn .ico { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover .ico { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--grad); background-size: 140% 100%; background-position: 0 0; box-shadow: 0 8px 22px -10px rgba(27, 111, 208, .7); transition: background-position .4s ease, transform .2s ease, box-shadow .2s ease; }
.btn--primary:hover { background-position: 100% 0; box-shadow: 0 12px 28px -10px rgba(0, 174, 239, .75); }
.btn--light { --bg: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .2); }
.btn--light:hover { --bg: rgba(255, 255, 255, .16); }
.btn--white { --bg: #fff; --fg: var(--ink); }
.btn--white:hover { --bg: var(--paper); }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 14px; }
.btn--block { width: 100%; }

.icon-btn {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--card);
	color: var(--ink);
	cursor: pointer;
	transition: border-color .2s ease, background-color .2s ease;
}
.icon-btn:hover { border-color: var(--ink); }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--navy);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--grad); border-radius: 2px; }
.eyebrow--light { color: rgba(255, 255, 255, .8); }
.eyebrow--light::before { background: #fff; }

.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.topbar { background: var(--ink); color: rgba(255, 255, 255, .86); font-size: 13.5px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar__promo { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.topbar__links { display: flex; gap: 22px; }
.topbar__links a { display: inline-flex; align-items: center; gap: 7px; opacity: .85; transition: opacity .2s; }
.topbar__links a:hover { opacity: 1; }
.topbar__links .ico { width: 15px; height: 15px; }
.pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #3ddc97; flex: none; }
.pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #3ddc97; opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
	.pulse::after { animation: pulse 2s ease-out infinite; }
}
@keyframes pulse { 0% { transform: scale(.5); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }

.head {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(242, 242, 238, .82);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s ease, background-color .25s ease;
}
.head.is-stuck { border-color: var(--line); background: rgba(247, 247, 245, .92); }
.head__inner { display: flex; align-items: center; gap: 28px; height: var(--head-h); }
.brand img { width: 118px; height: auto; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a { position: relative; padding: 10px 14px; border-radius: 999px; font-size: 15px; font-weight: 500; color: var(--ink-2); transition: background-color .2s ease, color .2s ease; }
.nav a:hover { background: rgba(13, 20, 51, .06); color: var(--ink); }
.nav a.is-current { color: var(--ink); background: rgba(13, 20, 51, .07); }
.head__actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }
.nav-toggle .ico + .ico { display: none; }

.hero { padding-block: clamp(32px, 5vw, 64px) clamp(40px, 6vw, 80px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title {
	font-size: clamp(42px, 6.4vw, 88px);
	line-height: .98;
	letter-spacing: -.035em;
	font-weight: 800;
	margin-bottom: 24px;
}
.hero__title .grad { display: inline-block; padding-bottom: .08em; }
.hero__lead { max-width: 540px; font-size: clamp(16px, 1.4vw, 18px); color: var(--muted); margin-bottom: 32px; }

.finder {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 560px;
	padding: 7px 7px 7px 20px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 999px;
	box-shadow: var(--shadow);
	transition: border-color .2s ease, box-shadow .2s ease;
}
.finder:focus-within { border-color: rgba(27, 111, 208, .5); box-shadow: 0 0 0 4px rgba(0, 174, 239, .12), var(--shadow); }
.finder > .ico { color: var(--muted); }
.finder input[type="search"] { flex: 1; min-width: 0; height: 46px; border: 0; background: transparent; outline: none; font-size: 16px; }
.finder input::-webkit-search-cancel-button { display: none; }
.finder__list {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	z-index: 20;
	max-height: 320px;
	overflow: auto;
	padding: 8px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r);
	box-shadow: 0 24px 48px -20px rgba(13, 20, 51, .3);
}
.finder__list a { display: flex; justify-content: space-between; gap: 12px; padding: 10px 14px; border-radius: 10px; font-size: 15px; }
.finder__list a:hover, .finder__list a:focus { background: var(--paper); outline: none; }
.finder__list small { color: var(--muted); font-family: var(--mono); font-size: 12px; white-space: nowrap; }
.finder__list mark { background: rgba(0, 174, 239, .18); color: inherit; border-radius: 3px; }

.hero__chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; font-size: 14px; }
.hero__chips span { color: var(--muted); margin-right: 4px; }
.hero__chips a { padding: 6px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .6); transition: border-color .2s ease, background-color .2s ease; }
.hero__chips a:hover { border-color: var(--ink); background: #fff; }

.hero__visual { position: relative; padding: 0 0 48px 0; }
.studio {
	position: relative;
	aspect-ratio: 1 / 1;
	max-width: 100%;
	border-radius: var(--r-lg);
	background: radial-gradient(120% 90% at 50% 20%, #ffffff 0%, var(--studio) 55%, #ecebe6 100%);
	border: 1px solid var(--line);
	overflow: hidden;
}
.studio::after {
	content: "";
	position: absolute;
	inset: auto 8% 9% 8%;
	height: 18%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(13, 20, 51, .12), transparent 70%);
	filter: blur(10px);
	pointer-events: none;
}
.studio__img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transform: scale(1.04); }
@media (prefers-reduced-motion: no-preference) {
	.studio__img { animation: float 9s ease-in-out infinite; }
}
@keyframes float { 0%, 100% { transform: scale(1.04) translateY(0); } 50% { transform: scale(1.04) translateY(-8px); } }
.studio__tag { position: absolute; z-index: 2; top: 20px; left: 20px; padding: 7px 12px; font-size: 11.5px; text-transform: uppercase; background: rgba(255, 255, 255, .85); border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2); }

.label {
	position: absolute;
	z-index: 3;
	left: -28px;
	bottom: 0;
	width: min(290px, 70%);
	padding: 16px 18px 14px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: 0 28px 60px -24px rgba(13, 20, 51, .35);
	transform: rotate(-2.5deg);
}
.label::before { content: ""; position: absolute; top: 0; left: 18px; right: 18px; height: 4px; background: var(--grad); border-radius: 0 0 4px 4px; }
.label__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px dashed var(--line); font-size: 11px; text-transform: uppercase; color: var(--muted); }
.label__code { color: var(--ink); font-weight: 600; }
.label__k { font-size: 11.5px; color: var(--muted); }
.label__time { font-size: 34px; font-weight: 600; letter-spacing: .02em; line-height: 1.15; font-variant-numeric: tabular-nums; }
.label__bars { display: flex; align-items: stretch; gap: 2px; height: 30px; margin: 10px 0 8px; }
.label__bars i { display: block; width: calc(var(--w) * 1.5px); background: var(--ink); }
.label__foot { font-size: 11px; font-weight: 600; letter-spacing: .14em; color: var(--ink-2); }

.stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: clamp(40px, 6vw, 72px);
	border-top: 1px solid var(--line);
}
.stats > div { padding: 22px 20px 0 0; }
.stats > div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.stats dt { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.stats dd { display: flex; flex-direction: column; font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; letter-spacing: -.03em; line-height: 1.05; }
.stats small { margin-top: 6px; font-size: 13px; font-weight: 500; letter-spacing: 0; color: var(--ink-2); }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px, 4vw, 48px); }
.section__title { font-size: clamp(30px, 4vw, 52px); line-height: 1.05; letter-spacing: -.03em; font-weight: 700; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; padding-bottom: 4px; border-bottom: 2px solid var(--ink); white-space: nowrap; }
.link-arrow .ico { width: 18px; height: 18px; transition: transform .2s ease; }
.link-arrow:hover .ico { transform: translateX(4px); }

.cats { background: var(--card); border-radius: var(--r-lg) var(--r-lg) 0 0; }
.cats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.cat a {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--studio);
	border: 1px solid transparent;
	border-radius: var(--r);
	overflow: hidden;
	transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.cat a:hover { border-color: var(--line); box-shadow: var(--shadow); transform: translateY(-3px); }
.cat__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.cat__media img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transform: scale(1.12); transition: transform .5s cubic-bezier(.2, .7, .2, 1); }
.cat a:hover .cat__media img { transform: scale(1.2); }
.cat__body { display: flex; flex-direction: column; gap: 4px; padding: 0 60px 18px 18px; margin-top: auto; }
.cat__name { font-weight: 600; font-size: 16.5px; line-height: 1.25; }
.cat__count { font-size: 12px; color: var(--muted); }
.cat__go { position: absolute; right: 14px; bottom: 16px; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 1px solid var(--line); transition: background-color .25s ease, color .25s ease, border-color .25s ease; }
.cat__go .ico { width: 16px; height: 16px; transform: rotate(-45deg); transition: transform .25s ease; }
.cat a:hover .cat__go { background: var(--ink); border-color: var(--ink); color: #fff; }
.cat a:hover .cat__go .ico { transform: rotate(0); }
.cat--xl { grid-column: span 2; grid-row: span 2; }
.cat:last-child { grid-column: span 2; }
.cat:last-child a { flex-direction: row; align-items: stretch; }
.cat:last-child .cat__media { position: relative; flex: 0 0 50%; aspect-ratio: auto; }
.cat:last-child .cat__media img { position: absolute; inset: 0; }
.cat:last-child .cat__body { justify-content: center; padding: 18px 60px 18px 8px; margin-top: 0; }
.cat--xl .cat__media { position: relative; aspect-ratio: auto; flex: 1; min-height: 280px; }
.cat--xl .cat__media img { position: absolute; inset: 0; }
.cat--xl .cat__name { font-size: clamp(20px, 2vw, 26px); letter-spacing: -.01em; }
.cat--xl .cat__body { padding: 0 72px 24px 24px; }

.solutions { background: var(--ink); color: #fff; }
.solutions .eyebrow { color: #7fd6ff; }
.solutions__tabs { display: flex; gap: 8px; margin-bottom: 32px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.solutions__tabs::-webkit-scrollbar { display: none; }
.tab {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .16);
	background: transparent;
	color: rgba(255, 255, 255, .75);
	font-weight: 500;
	font-size: 15px;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.tab:hover { color: #fff; border-color: rgba(255, 255, 255, .35); }
.tab.is-active { background: #fff; color: var(--ink); border-color: #fff; }
.tab__n { font-size: 11px; opacity: .55; }
.panel { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(20px, 3vw, 40px); }
.panel[hidden] { display: none; }
@media (prefers-reduced-motion: no-preference) {
	.panel.is-in { animation: panelIn .45s cubic-bezier(.2, .7, .2, 1); }
}
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.panel__intro { display: flex; flex-direction: column; align-items: flex-start; padding: 20px; border-radius: var(--r-lg); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); }
.panel__media { position: relative; flex: 1 1 auto; width: 100%; min-height: 240px; border-radius: var(--r); background: var(--studio); overflow: hidden; margin-bottom: 22px; }
.panel__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transform: scale(1.1); }
.panel__kicker { font-size: 12px; text-transform: uppercase; color: #7fd6ff; margin-bottom: 8px; }
.panel__lead { font-size: clamp(18px, 1.7vw, 22px); line-height: 1.4; margin-bottom: 24px; letter-spacing: -.01em; }
.panel__items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

.prod a { display: flex; flex-direction: column; height: 100%; padding: 12px 12px 16px; border-radius: var(--r); background: #fff; color: var(--ink); transition: transform .25s ease, box-shadow .25s ease; }
.prod a:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .45); }
.prod__media { display: block; aspect-ratio: 1 / 1; border-radius: var(--r-sm); background: #f7f7f7; overflow: hidden; margin-bottom: 14px; }
.prod__media img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: transform .45s cubic-bezier(.2, .7, .2, 1); }
.prod a:hover .prod__media img { transform: scale(1.05); }
.prod__name { font-size: 15px; font-weight: 500; line-height: 1.35; padding-inline: 4px; margin-bottom: 12px; }
.prod__more { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-inline: 4px; font-size: 13.5px; font-weight: 600; color: var(--navy); }
.prod__more .ico { width: 16px; height: 16px; transition: transform .2s ease; }
.prod a:hover .prod__more .ico { transform: translateX(3px); }
.prod__price { margin-top: auto; padding-inline: 4px; font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.prod__price small { font-size: 12.5px; font-weight: 500; color: var(--muted); letter-spacing: 0; }

.picker { background: var(--paper); }
.picker__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.picker__lead { color: var(--muted); margin: 16px 0 28px; max-width: 460px; }
.picker__lead b { color: var(--ink); }
.dims { display: grid; gap: 12px; margin-bottom: 22px; }
.dim { display: grid; grid-template-columns: 80px 124px minmax(0, 1fr); align-items: center; gap: 16px; padding: 12px 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); }
.dim__k { font-weight: 600; font-size: 15px; }
.dim__field { display: flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 10px; background: var(--paper); }
.dim__field input { width: 100%; min-width: 0; border: 0; background: transparent; font-family: var(--mono); font-weight: 600; font-size: 16px; outline: none; -moz-appearance: textfield; }
.dim__field input::-webkit-inner-spin-button { -webkit-appearance: none; }
.dim__field span { font-size: 12px; color: var(--muted); }
.dim__range { width: 100%; accent-color: var(--navy); height: 24px; }
.seg { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; padding: 0; border: 0; }
.seg legend { width: 100%; margin-bottom: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg span { display: inline-block; padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); font-size: 14px; font-weight: 500; transition: all .2s ease; }
.seg input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.seg input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }

.picker__result { position: sticky; top: calc(var(--head-h) + 24px); }
.iso { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 12px; margin-bottom: 14px; background-image: linear-gradient(rgba(13, 20, 51, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 20, 51, .045) 1px, transparent 1px); background-size: 24px 24px; background-position: center; }
.iso svg { width: 100%; height: auto; }
.iso svg text { font-family: var(--mono); font-size: 11px; fill: var(--muted); }
.iso__legend { position: absolute; left: 20px; bottom: 16px; display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); text-transform: uppercase; }
.sw { display: inline-block; width: 10px; height: 10px; border-radius: 3px; }
.sw--box { background: #d9b88f; }
.sw--item { background: var(--navy); margin-left: 6px; }
.fits { display: grid; gap: 10px; }
.fit a { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 16px; padding: 14px 16px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); transition: border-color .2s ease, box-shadow .2s ease; }
.fit a:hover { border-color: var(--ink); }
.fit.is-best a { border-color: transparent; box-shadow: 0 0 0 2px var(--navy); }
.fit__rank { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--paper); font-family: var(--mono); font-size: 13px; font-weight: 600; }
.fit.is-best .fit__rank { background: var(--grad); color: #fff; }
.fit__name { display: block; font-weight: 600; font-size: 15px; line-height: 1.3; }
.fit__meta { display: flex; flex-wrap: wrap; gap: 6px 12px; margin-top: 4px; font-size: 12.5px; color: var(--muted); }
.fit__bar { position: relative; display: inline-block; width: 64px; height: 6px; margin-right: 6px; border-radius: 6px; background: var(--paper); overflow: hidden; vertical-align: middle; }
.fit__bar i { position: absolute; inset: 0 auto 0 0; background: var(--grad); border-radius: 6px; }
.fit__go { color: var(--navy); }
.fits__empty { padding: 22px; background: var(--card); border: 1px dashed var(--line); border-radius: var(--r); color: var(--muted); }
.fits__empty a { color: var(--navy); font-weight: 600; }
.badge { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 999px; background: rgba(0, 174, 239, .12); color: #0a5d8f; font-size: 11.5px; font-weight: 600; }
.badge--kraft { background: var(--kraft-soft); color: #7a5325; }

.popular { background: var(--card); overflow: hidden; }
.rail-nav { display: flex; gap: 8px; }
.rail-nav [data-rail="-1"] .ico { transform: rotate(180deg); }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(220px, 23%, 290px); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px; }
.rail::-webkit-scrollbar { display: none; }
.rail > li { scroll-snap-align: start; }
.prod--card a { background: var(--paper); }
.prod--card a:hover { box-shadow: var(--shadow); }
.prod--card .prod__media { background: #fff; }

.delivery__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; }
.dcard { display: flex; flex-direction: column; padding: clamp(22px, 2.4vw, 32px); background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); }
.dcard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.dcard__top .ico { width: 44px; height: 44px; padding: 10px; border-radius: 14px; background: var(--paper); color: var(--navy); }
.dcard__top .mono { font-size: 14px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: var(--paper); }
.dcard h3 { font-size: 22px; letter-spacing: -.015em; line-height: 1.2; margin-bottom: 12px; }
.dcard p { color: var(--muted); font-size: 15px; }
.dcard--wide { grid-row: span 2; }
.dcard--accent { background: var(--grad); color: #fff; border: 0; }
.dcard--accent p { color: rgba(255, 255, 255, .86); }
.dcard--accent .dcard__top .ico, .dcard--accent .dcard__top .mono { background: rgba(255, 255, 255, .16); color: #fff; }
.rates { width: 100%; margin-top: 22px; font-size: 15px; }
.rates tr { border-top: 1px solid var(--line); }
.rates th { text-align: left; font-weight: 500; padding: 12px 0; }
.rates td { text-align: right; font-family: var(--mono); font-weight: 600; }
.dcard--note { grid-column: span 2; flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; background: var(--ink); color: #fff; border: 0; }
.dcard--note h3 { margin: 0 0 6px; }
.dcard--note p { color: rgba(255, 255, 255, .72); }
.dcard--note p a { color: #7fd6ff; font-weight: 600; }
.dcard--note .label__time { flex: none; font-size: clamp(28px, 3vw, 40px); color: #fff; }
.dcard--note .mono.k { display: block; font-size: 11.5px; color: rgba(255, 255, 255, .6); text-transform: uppercase; }

.wholesale { padding-inline: clamp(8px, 2vw, 24px); }
.wholesale__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 32px;
	align-items: center;
	padding-block: clamp(40px, 6vw, 72px);
	border-radius: var(--r-lg);
	background: var(--ink);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}
.wholesale__inner::before { content: ""; position: absolute; z-index: -1; right: -10%; top: -60%; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(0, 174, 239, .55), rgba(45, 56, 138, .25) 60%, transparent); }
.wholesale__inner::after { content: ""; position: absolute; z-index: -1; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(90deg, #000, transparent 70%); -webkit-mask-image: linear-gradient(90deg, #000, transparent 70%); }
.wholesale__title { font-size: clamp(30px, 4vw, 52px); line-height: 1.05; letter-spacing: -.03em; margin-bottom: 14px; }
.wholesale__lead { color: rgba(255, 255, 255, .75); max-width: 520px; font-size: 17px; }
.wholesale__contacts { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 26px; border-radius: var(--r); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.wholesale__contacts .mono { font-size: 12px; color: rgba(255, 255, 255, .7); }
.wholesale__phone { font-size: clamp(26px, 3vw, 36px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }

.about__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); }
.about__copy p { color: var(--ink-2); margin-top: 18px; font-size: 17px; }
.about__copy .section__title + p { margin-top: 28px; }
.about__quote { padding: 18px 22px; border-left: 3px solid; border-image: var(--grad) 1; background: var(--card); font-weight: 600; color: var(--ink) !important; }
.values { display: grid; gap: 14px; counter-reset: v; }
.value { position: relative; padding: 26px 28px 26px 92px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); }
.value__n { position: absolute; left: 28px; top: 26px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--paper); font-size: 13px; font-weight: 600; color: var(--navy); }
.value h3 { font-size: 21px; letter-spacing: -.01em; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 15px; }

.posts { background: var(--card); }
.posts__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.post a { display: flex; flex-direction: column; height: 100%; }
.post__media { position: relative; display: block; aspect-ratio: 16 / 10; border-radius: var(--r); overflow: hidden; background: var(--paper); margin-bottom: 18px; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.post a:hover .post__media img { transform: scale(1.05); }
.post__date { position: absolute; left: 14px; top: 14px; display: flex; flex-direction: column; align-items: center; padding: 6px 10px; border-radius: 12px; background: #fff; font-size: 12px; font-weight: 500; line-height: 1.1; text-transform: uppercase; color: var(--muted); }
.post__date b { font-size: 20px; color: var(--ink); }
.post__title { font-size: 19px; font-weight: 600; line-height: 1.3; letter-spacing: -.01em; margin-bottom: 8px; }
.post__ex { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.post .prod__more { padding-inline: 0; }

.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); }
.clist { display: grid; gap: 4px; margin: 28px 0; }
.clist li { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.clist .ico { width: 40px; height: 40px; padding: 10px; border-radius: 12px; background: var(--card); color: var(--navy); }
.clist div { display: flex; flex-direction: column; }
.clist span { font-size: 13px; color: var(--muted); }
.clist a, .clist b { font-weight: 600; font-size: 16.5px; }
.clist a:hover { color: var(--navy); }
.reqs { display: grid; grid-template-columns: repeat(3, auto); gap: 12px 28px; justify-content: start; font-size: 14px; }
.reqs dt { color: var(--muted); font-size: 12.5px; }
.reqs dd { font-weight: 600; }

.cform { align-self: start; display: grid; gap: 14px; padding: clamp(22px, 3vw, 36px); background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); }
.cform h3 { font-size: 24px; letter-spacing: -.02em; margin-bottom: 6px; }
.cform label { display: grid; gap: 6px; font-size: 14px; font-weight: 500; }
.cform input:not([type="checkbox"]), .cform textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--paper); font-size: 16px; outline: none; resize: vertical; transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.cform input:focus, .cform textarea:focus { border-color: rgba(27, 111, 208, .6); background: #fff; box-shadow: 0 0 0 4px rgba(0, 174, 239, .12); }
.cform .is-invalid { border-color: #d6455d !important; }
.cform .check { grid-template-columns: auto 1fr; align-items: start; gap: 10px; font-weight: 400; color: var(--muted); }
.cform .check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--navy); }
.cform .check a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.cform__note { padding: 12px 14px; border-radius: var(--r-sm); background: rgba(61, 220, 151, .14); color: #11734b; font-size: 14px; font-weight: 500; }
.cform__note.is-error { background: rgba(214, 69, 93, .1); color: #a3253b; }

.map { grid-column: 1 / -1; height: clamp(260px, 32vw, 380px); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--card); }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.9) contrast(1.05); }

.foot { background: var(--ink); color: rgba(255, 255, 255, .72); padding-top: clamp(56px, 7vw, 88px); font-size: 15px; }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 32px; padding-bottom: 48px; }
.foot__brand img { width: 128px; margin-bottom: 18px; }
.foot__brand p { max-width: 340px; }
.foot h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.foot ul { display: grid; gap: 9px; }
.foot a { transition: color .2s ease; }
.foot a:hover { color: #fff; }
.foot__contact p + p { margin-top: 6px; }
.foot__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13.5px; }

.reveal { transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1); transition-delay: calc(var(--d, 0) * 40ms); }
@media (prefers-reduced-motion: no-preference) {
	.js .reveal:not(.is-in) { opacity: 0; transform: translateY(18px); }
}

@media (max-width: 1100px) {
	.nav a { padding: 10px 10px; font-size: 14.5px; }
	.head__cta { display: none; }
	.cats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.delivery__grid { grid-template-columns: 1fr 1fr; }
	.dcard--wide { grid-row: auto; grid-column: 1 / -1; }
	.cats__grid .cat:last-child { grid-column: auto; }
	.cats__grid .cat:last-child a { flex-direction: column; }
	.cats__grid .cat:last-child .cat__media { flex: none; aspect-ratio: 4 / 3; }
	.cats__grid .cat:last-child .cat__body { padding: 0 60px 18px 18px; margin-top: auto; }
	.foot__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
	:root { --head-h: 64px; }
	.nav-toggle { display: inline-grid; }
	.nav {
		position: fixed;
		inset: var(--head-h) 0 auto 0;
		flex-direction: column;
		gap: 0;
		padding: 12px clamp(16px, 4vw, 40px) 24px;
		background: var(--studio);
		border-bottom: 1px solid var(--line);
		box-shadow: 0 30px 40px -30px rgba(13, 20, 51, .3);
		transform: translateY(-8px);
		opacity: 0;
		visibility: hidden;
		transition: opacity .2s ease, transform .2s ease, visibility .2s;
	}
	.nav a { padding: 14px 4px; font-size: 18px; border-radius: 0; border-bottom: 1px solid var(--line); }
	.nav a:hover { background: transparent; }
	.nav-open .nav { opacity: 1; transform: none; visibility: visible; }
	.nav-open .nav-toggle .ico:first-child { display: none; }
	.nav-open .nav-toggle .ico + .ico { display: block; }
	.head__actions { margin-left: auto; }
	.hero__grid, .picker__grid, .about__grid, .contact__grid, .panel { grid-template-columns: minmax(0, 1fr); }
	.hero__visual { max-width: 560px; margin-inline: auto; width: 100%; }
	.label { left: 0; }
	.stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.stats > div:nth-child(3) { padding-left: 0; border-left: 0; }
	.stats > div:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 22px; }
	.picker__result { position: static; }
	.wholesale__inner { grid-template-columns: minmax(0, 1fr); }
	.posts__grid { grid-template-columns: minmax(0, 1fr); max-width: 560px; }
	.panel__media { aspect-ratio: 16 / 9; }
}

@media (max-width: 700px) {
	.topbar__links { display: none; }
	.topbar__promo { font-size: 12.5px; }
	.cats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.cat--xl { grid-row: auto; }
	.cat--xl .cat__media { min-height: 200px; }
	.cat__body { padding: 0 14px 14px 14px; }
	.cat__name { font-size: 14.5px; }
	.cat__go { display: none; }
	.cat--xl .cat__body { padding: 0 18px 20px; }
	.panel__items { gap: 10px; }
	.prod__name { font-size: 14px; }
	.section__head { flex-direction: column; align-items: flex-start; }
	.rail-nav { display: none; }
	.rail { grid-auto-columns: 72%; }
	.delivery__grid { grid-template-columns: minmax(0, 1fr); }
	.dcard--note { grid-column: auto; flex-direction: column; align-items: flex-start; }
	.cats__grid .cat:last-child { grid-column: span 2; }
	.cats__grid .cat:last-child a { flex-direction: row; }
	.cats__grid .cat:last-child .cat__media { flex: 0 0 50%; aspect-ratio: 1 / 1; }
	.cats__grid .cat:last-child .cat__body { justify-content: center; padding: 14px 14px 14px 4px; margin-top: 0; }
	.dim { grid-template-columns: 1fr 120px; gap: 8px 12px; }
	.dim__range { grid-column: 1 / -1; }
	.fit a { grid-template-columns: auto minmax(0, 1fr); }
	.fit__go { display: none; }
	.reqs { grid-template-columns: 1fr 1fr; }
	.foot__grid { grid-template-columns: minmax(0, 1fr); }
	.finder { padding-left: 16px; }
	.finder .btn { padding: 0 16px; }
	.label__time { font-size: 28px; }
	.value { padding: 22px 20px 22px 20px; }
	.value__n { position: static; margin-bottom: 14px; }
}

.about__more { margin-top: 28px; }
.spacer { height: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(32px, 5vw, 64px); }
.prose { max-width: 760px; font-size: 17px; }
.prose > * + * { margin-top: 1em; }
.btn--ghost { --bg: transparent; --fg: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; font-size: 13.5px; color: var(--muted); }
.crumbs a { color: var(--ink-2); font-weight: 500; }
.crumbs a:hover { color: var(--navy); }
.crumbs--light, .crumbs--light a { color: rgba(255, 255, 255, .7); }
.crumbs--light a:hover { color: #fff; }

.phero { padding-block: clamp(36px, 6vw, 80px) clamp(28px, 4vw, 48px); }
.phero__title { font-size: clamp(44px, 7vw, 96px); line-height: .95; letter-spacing: -.04em; font-weight: 800; margin-bottom: 18px; }
.phero__lead { max-width: 640px; font-size: clamp(16px, 1.5vw, 19px); color: var(--muted); }
.phero__grid { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.phero--contact .phero__lead { font-family: var(--mono); font-size: 13px; letter-spacing: .12em; color: var(--navy); }

.about-hero { padding-block: clamp(36px, 6vw, 80px) clamp(40px, 6vw, 72px); overflow: hidden; }
.about-hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.about-hero .phero__lead { margin-bottom: 30px; color: var(--ink-2); }
.about-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.mosaic { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; aspect-ratio: 1.05 / 1; }
.mosaic__tile { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--studio); border: 1px solid var(--line); }
.mosaic__tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transform: scale(1.08); }
.mosaic__tile--a { grid-row: span 2; }
.mosaic__year { position: absolute; left: -22px; bottom: 26px; display: flex; flex-direction: column; padding: 16px 22px; border-radius: 18px; background: var(--ink); color: #fff; box-shadow: 0 24px 48px -20px rgba(13, 20, 51, .5); transform: rotate(-3deg); }
.mosaic__year .mono { font-size: 11px; text-transform: uppercase; color: #7fd6ff; }
.mosaic__year b { font-size: 40px; line-height: 1; letter-spacing: -.03em; }

.stats--band { margin-top: 0; padding: 4px 28px 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); }

.story__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.studio--tall { aspect-ratio: 4 / 5; }
.story__big { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.3; letter-spacing: -.02em; font-weight: 600; margin-bottom: 22px; }
.story__text { color: var(--muted); font-size: 17px; margin-bottom: 30px; }
.story__quote { margin: 0; padding: 24px 28px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); position: relative; overflow: hidden; }
.story__quote::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad); }
.story__quote .mono { font-size: 11px; text-transform: uppercase; color: var(--navy); }
.story__quote p { margin-top: 6px; font-size: 19px; font-weight: 600; line-height: 1.4; }

.vals { background: var(--ink); color: #fff; }
.vals .eyebrow { color: #7fd6ff; }
.vals__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.vcard { display: flex; flex-direction: column; padding: clamp(24px, 2.6vw, 34px); border-radius: var(--r-lg); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); transition: background-color .3s ease, transform .3s ease; }
.vcard:hover { background: rgba(255, 255, 255, .08); transform: translateY(-4px); }
.vcard__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.vcard__top .ico { width: 52px; height: 52px; padding: 13px; border-radius: 16px; background: var(--grad); color: #fff; }
.vcard__top .mono { font-size: 13px; color: rgba(255, 255, 255, .5); }
.vcard h3 { font-size: 26px; letter-spacing: -.02em; margin-bottom: 12px; }
.vcard p { color: rgba(255, 255, 255, .72); font-size: 15.5px; }

.why__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.why__item { padding: 26px 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); }
.why__item > .ico { width: 44px; height: 44px; padding: 10px; border-radius: 14px; background: var(--paper); color: var(--navy); margin-bottom: 22px; }
.why__item h3 { font-size: 18px; letter-spacing: -.01em; margin-bottom: 8px; }
.why__item p { color: var(--muted); font-size: 15px; }
.why__item a { color: var(--navy); font-weight: 600; white-space: nowrap; }

.range { padding-top: 0; }
.range__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 32px; border-top: 1px solid var(--line); }
.range__list a { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto auto; align-items: center; gap: 16px; padding: 14px 4px; border-bottom: 1px solid var(--line); transition: padding .25s ease, background-color .25s ease; }
.range__list a:hover { padding-left: 12px; background: var(--card); }
.range__img { width: 56px; height: 56px; border-radius: 12px; background: var(--studio); overflow: hidden; }
.range__img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.range__name { font-weight: 600; font-size: 16px; }
.range__count { font-size: 12px; color: var(--muted); }
.range__list .ico { width: 18px; height: 18px; color: var(--navy); }

.reqs--light { margin-top: 18px; color: #fff; }
.reqs--light dt { color: rgba(255, 255, 255, .6); }

.sale-hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; isolation: isolate; }
.sale-hero::before { content: ""; position: absolute; z-index: -1; right: -8%; top: -30%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(0, 174, 239, .5), rgba(45, 56, 138, .2) 60%, transparent); }
.sale-hero::after { content: ""; position: absolute; z-index: -1; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 36px 36px; }
.sale-hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 40px; align-items: center; padding-block: clamp(40px, 6vw, 80px); }
.sale-hero__title { font-size: clamp(56px, 10vw, 150px); line-height: .9; letter-spacing: -.045em; font-weight: 800; background: linear-gradient(100deg, #fff 30%, #7fd6ff 70%, #00aeef); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 18px; }
.sale-hero__lead { font-size: clamp(18px, 2vw, 24px); color: rgba(255, 255, 255, .8); margin-bottom: 32px; }
.sale-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.sale-hero__badge { position: relative; justify-self: center; width: min(460px, 100%); }
.sale-hero__img { aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: #f4f4f2; border: 10px solid rgba(255, 255, 255, .06); }
.sale-hero__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.burst { position: absolute; z-index: 2; left: -6%; top: 4%; display: grid; place-content: center; text-align: center; width: 42%; aspect-ratio: 1; color: var(--ink); background: #fff; clip-path: polygon(50% 0, 61% 12%, 77% 6%, 80% 22%, 96% 26%, 90% 41%, 100% 54%, 87% 63%, 91% 79%, 75% 81%, 69% 96%, 55% 88%, 42% 100%, 34% 86%, 18% 91%, 17% 75%, 2% 69%, 10% 55%, 0 41%, 13% 32%, 10% 16%, 26% 15%, 34% 1%); transform: rotate(-12deg); }
@media (prefers-reduced-motion: no-preference) {
	.burst { animation: wobble 6s ease-in-out infinite; }
}
@keyframes wobble { 0%, 100% { transform: rotate(-12deg) scale(1); } 50% { transform: rotate(-6deg) scale(1.04); } }
.burst .mono { font-size: 13px; text-transform: uppercase; color: var(--muted); }
.burst b { font-size: clamp(32px, 4.4vw, 58px); line-height: .95; letter-spacing: -.04em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.ticker { border-top: 1px solid rgba(255, 255, 255, .1); overflow: hidden; padding-block: 16px; }
.ticker__track { display: flex; gap: 42px; width: max-content; white-space: nowrap; font-size: 15px; color: rgba(255, 255, 255, .78); }
.ticker__track span { display: inline-flex; align-items: center; gap: 10px; }
.ticker__track b { padding: 2px 9px; border-radius: 999px; background: var(--grad); color: #fff; font-size: 13px; }
@media (prefers-reduced-motion: no-preference) {
	.ticker__track { animation: marquee 60s linear infinite; }
}
@keyframes marquee { to { transform: translateX(-50%); } }

.sales { padding-top: clamp(40px, 6vw, 72px); }
.sales__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.seg--inline { margin: 0; }
.seg em { font-style: normal; margin-left: 6px; font-family: var(--mono); font-size: 12px; opacity: .6; }
.sort { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.sort select { appearance: none; -webkit-appearance: none; padding: 10px 40px 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%230d1433' stroke-width='1.8'%3E%3Cpath d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E") no-repeat right 16px center; color: var(--ink); font-weight: 500; cursor: pointer; }
.sales__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.scard[hidden] { display: none; }
.scard a { display: flex; flex-direction: column; height: 100%; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.scard a:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.scard__media { position: relative; display: block; aspect-ratio: 1; background: #f4f4f2; overflow: hidden; }
.scard__media img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.scard a:hover .scard__media img { transform: scale(1.06); }
.scard__badge { position: absolute; left: 14px; top: 14px; padding: 6px 12px; border-radius: 999px; background: var(--grad); color: #fff; font-weight: 700; font-size: 15px; letter-spacing: -.01em; box-shadow: 0 8px 20px -8px rgba(0, 110, 220, .7); }
.scard__body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.scard__name { font-weight: 500; font-size: 15px; line-height: 1.35; margin-bottom: 14px; }
.scard__prices { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; margin-top: auto; }
.scard__prices del { color: var(--muted); font-size: 14px; }
.scard__prices ins { text-decoration: none; font-size: 24px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.scard__prices small { font-size: 13px; font-weight: 500; color: var(--muted); }
.scard__foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: 10px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: 13px; }
.scard__vat { color: var(--muted); }
.scard__go { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--navy); }
.scard__go .ico { width: 16px; height: 16px; transition: transform .2s ease; }
.scard a:hover .scard__go .ico { transform: translateX(3px); }

.more-sales { padding-top: 0; }
.more-sales__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.mcard { position: relative; display: flex; flex-direction: column; gap: 6px; padding: clamp(26px, 3vw, 40px); border-radius: var(--r-lg); background: var(--card); border: 1px solid var(--line); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.mcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mcard__icon .ico, .pickup__card .mcard__icon .ico { width: 48px; height: 48px; padding: 12px; border-radius: 16px; background: var(--paper); color: var(--navy); margin-bottom: 24px; }
.mcard__k { font-size: 11.5px; text-transform: uppercase; color: var(--muted); }
.mcard__title { font-size: clamp(30px, 3.6vw, 48px); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.mcard__text { color: var(--muted); }
.mcard__go { position: absolute; right: clamp(22px, 3vw, 36px); bottom: clamp(22px, 3vw, 36px); display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--ink); color: #fff; transition: transform .3s ease; }
.mcard:hover .mcard__go { transform: rotate(-45deg); }
.mcard--dark { background: var(--grad); color: #fff; border: 0; }
.mcard--dark .mcard__k, .mcard--dark .mcard__text { color: rgba(255, 255, 255, .8); }
.mcard--dark .mcard__icon .ico { background: rgba(255, 255, 255, .16); color: #fff; }
.mcard--dark .mcard__go { background: #fff; color: var(--ink); }

.status { display: flex; align-items: center; gap: 14px; padding: 14px 20px 14px 16px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.status__dot { position: relative; width: 12px; height: 12px; border-radius: 50%; background: #b9bccb; flex: none; }
.status.is-open .status__dot { background: #22c07a; }
.status.is-open .status__dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid #22c07a; opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
	.status.is-open .status__dot::after { animation: pulse 2s ease-out infinite; }
}
.status.is-closed .status__dot { background: #e0566d; }
.status b { display: block; font-size: 15px; }
.status span { font-size: 13.5px; color: var(--muted); }

.ccards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ccard { position: relative; display: flex; flex-direction: column; padding: 26px 26px 22px; border-radius: var(--r-lg); background: var(--card); border: 1px solid var(--line); }
.ccard__icon .ico { width: 48px; height: 48px; padding: 12px; border-radius: 16px; background: var(--paper); color: var(--navy); margin-bottom: 28px; }
.ccard__k { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.ccard__v { font-size: clamp(22px, 2.2vw, 28px); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 18px; word-break: break-word; }
.ccard__v:hover { color: var(--navy); }
.ccard--accent { background: var(--grad); color: #fff; border: 0; }
.ccard--accent .ccard__k { color: rgba(255, 255, 255, .8); }
.ccard--accent .ccard__icon .ico { background: rgba(255, 255, 255, .16); color: #fff; }
.ccard--accent .ccard__v:hover { color: #fff; opacity: .85; }
.copy { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; margin-top: auto; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: inherit; font-size: 13px; font-weight: 500; cursor: pointer; transition: background-color .2s ease, border-color .2s ease; }
.copy .ico { width: 15px; height: 15px; }
.copy:hover { border-color: currentColor; }
.copy.is-done { background: #22c07a; border-color: #22c07a; color: #fff; }
.ccard--accent .copy { border-color: rgba(255, 255, 255, .35); }
.copy--mini { margin: 0 0 0 8px; padding: 5px; border-color: rgba(255, 255, 255, .2); }

.cmain__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 32px); align-items: start; }
.cform--big { padding: clamp(24px, 3.4vw, 44px); gap: 16px; }
.cform--big .section__title { font-size: clamp(28px, 3vw, 40px); margin-bottom: 8px; }
.cform--big .eyebrow { margin-bottom: 4px; }
.cform--big .btn { justify-self: start; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.topics { margin: 4px 0 0; }
.cside { display: grid; gap: 16px; position: sticky; top: calc(var(--head-h) + 24px); }
.cbox { padding: 24px 26px; border-radius: var(--r-lg); background: var(--card); border: 1px solid var(--line); }
.cbox h3 { display: flex; align-items: center; gap: 10px; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.cbox h3 .ico { width: 18px; height: 18px; color: var(--navy); }
.cbox__big { font-size: 20px; font-weight: 600; line-height: 1.35; margin-bottom: 14px; }
.hours li { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; margin-inline: -14px; border-radius: 12px; font-size: 16px; }
.hours li + li { border-top: 1px solid var(--line); }
.hours li.is-today { background: var(--paper); border-color: transparent; }
.hours li.is-today span::after { content: "Šiandien"; margin-left: 10px; padding: 2px 8px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 600; vertical-align: 2px; }
.cbox--dark { background: var(--ink); color: #fff; border: 0; }
.cbox--dark h3 { color: rgba(255, 255, 255, .6); }
.reqlist { display: grid; gap: 12px; }
.reqlist div { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.reqlist div:last-child { border: 0; padding-bottom: 0; }
.reqlist dt { color: rgba(255, 255, 255, .6); font-size: 14px; }
.reqlist dd { display: flex; align-items: center; font-weight: 600; }

.pickup__map { position: relative; height: clamp(420px, 44vw, 560px); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--card); }
.pickup__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.9) contrast(1.05); }
.pickup__card { position: absolute; left: 24px; bottom: 24px; max-width: 420px; padding: 26px; border-radius: var(--r-lg); background: #fff; box-shadow: 0 30px 60px -24px rgba(13, 20, 51, .4); }
.pickup__card .mcard__icon .ico { margin-bottom: 16px; }
.pickup__card h3 { font-size: 20px; line-height: 1.25; letter-spacing: -.01em; margin-bottom: 10px; }
.pickup__card p { color: var(--muted); font-size: 14.5px; }

@media (max-width: 1100px) {
	.sales__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
	.about-hero__grid, .story__grid, .sale-hero__grid, .cmain__grid { grid-template-columns: minmax(0, 1fr); }
	.mosaic { max-width: 560px; width: 100%; margin-inline: auto; }
	.mosaic__year { left: 12px; }
	.vals__grid { grid-template-columns: minmax(0, 1fr); }
	.story__media { max-width: 520px; }
	.studio--tall { aspect-ratio: 5 / 4; }
	.ccards { grid-template-columns: minmax(0, 1fr); }
	.cside { position: static; }
	.sale-hero__badge { width: min(360px, 80%); }
	.range__list { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 700px) {
	.sales__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.scard__body { padding: 12px 12px 14px; }
	.scard__name { font-size: 13.5px; }
	.scard__prices ins { font-size: 19px; }
	.scard__foot { flex-direction: column; align-items: flex-start; }
	.scard__badge { left: 10px; top: 10px; font-size: 13px; padding: 4px 10px; }
	.sales__bar { flex-direction: column; align-items: stretch; }
	.seg--inline { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
	.seg--inline span { white-space: nowrap; }
	.more-sales__grid, .why__grid { grid-template-columns: minmax(0, 1fr); }
	.cform__row { grid-template-columns: minmax(0, 1fr); }
	.pickup__map { height: auto; display: flex; flex-direction: column; }
	.pickup__map iframe { height: 300px; }
	.pickup__card { position: static; max-width: none; box-shadow: none; border-radius: 0; }
	.stats--band { padding: 4px 18px 22px; }
	.range__list a { grid-template-columns: 48px minmax(0, 1fr) auto; }
	.range__count { display: none; }
	.range__img { width: 48px; height: 48px; }
	.status { border-radius: var(--r); }
	.phero__grid { align-items: flex-start; }
}
