/**
 * Armolan — "Studio Noir" design system.
 *
 * TOC:
 *  1. Fonts (self-hosted variable woff2)
 *  2. Tokens & base
 *  3. Primitives: buttons, chips, eyebrow, headings, cards, tabs, panels
 *  4. Layout: topbar, header, nav, dropdowns, mobile nav, footer, quote band
 *  5. Home sections
 *  6. Inner pages: page hero, catalog, product detail, cennik, about, contact, 404
 *  7. Animations, reveal, a11y, responsive
 */

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

/* 2. Tokens & base
--------------------------------------------------- */
:root {
	--bg: #0B0C0E;
	--bg-deep: #08090A;
	--surface: #141619;
	--surface-2: #121417;
	--surface-3: #0F1113;
	--surface-pop: #101215;
	--accent: #6FD6E8;
	--accent-soft: #A6E8F2;
	--on-accent: #062028;
	--teal-deep: #0F2A31;
	--text: #EEF1F3;
	--text-2: #C4CBD1;
	--text-3: #AEB6BD;
	--text-4: #98A0A7;
	--muted: #6A7278;
	--faint: #8A9198;
	--line-06: rgba(255, 255, 255, .06);
	--line-07: rgba(255, 255, 255, .07);
	--line-08: rgba(255, 255, 255, .08);
	--line-10: rgba(255, 255, 255, .1);
	--line-14: rgba(255, 255, 255, .14);
	--line-18: rgba(255, 255, 255, .18);
	--acc-08: rgba(111, 214, 232, .08);
	--acc-10: rgba(111, 214, 232, .1);
	--acc-14: rgba(111, 214, 232, .14);
	--acc-line: rgba(111, 214, 232, .22);
	--acc-line-strong: rgba(111, 214, 232, .55);
	--font-display: 'Sora', sans-serif;
	--font-body: 'Hanken Grotesk', system-ui, sans-serif;
	--gut: max(24px, calc((100vw - 1200px) / 2));
	--r-sm: 12px;
	--r-md: 16px;
	--r-lg: 22px;
	--sect-gap: clamp(56px, 8vh, 88px);
	--header-h: 77px;
}

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

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

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

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-soft); }
::selection { background: var(--accent); color: var(--on-accent); }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: #fff; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
blockquote { margin: 0; }
figure { margin: 0; }

.screen-reader-text {
	position: absolute !important;
	clip-path: inset(50%);
	width: 1px; height: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}
a.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	padding: 10px 16px; background: var(--accent); color: var(--on-accent); font-weight: 700;
}
a.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* 3. Primitives
--------------------------------------------------- */
.ar-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 13px 22px; border: 0; border-radius: 999px;
	background: var(--accent); color: var(--on-accent);
	font-weight: 700; font-size: 14px; line-height: 1.2; white-space: nowrap;
	transition: transform .2s, box-shadow .2s, background .2s;
}
.ar-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(111, 214, 232, .35); color: var(--on-accent); }
.ar-btn--lg { padding: 15px 26px; font-size: 15px; }
.ar-btn--cta { padding: 11px 20px; font-size: 13.5px; }
.ar-btn--block { display: flex; justify-content: center; width: 100%; border-radius: 10px; }
.ar-btn--ghost {
	background: transparent; color: #fff;
	border: 1px solid var(--line-18); box-shadow: none;
}
.ar-btn--ghost:hover { background: rgba(255, 255, 255, .09); color: #fff; box-shadow: none; }
.ar-btn--soft {
	background: rgba(255, 255, 255, .08); color: #fff;
	border: 1px solid rgba(255, 255, 255, .16); box-shadow: none;
}
.ar-btn--soft:hover { background: rgba(255, 255, 255, .16); color: #fff; box-shadow: none; }

.ar-eyebrow {
	margin: 0 0 14px;
	font-size: 12.5px; font-weight: 600; letter-spacing: .16em;
	text-transform: uppercase; color: var(--accent);
}
.ar-eyebrow--line { display: inline-flex; align-items: center; gap: 9px; }
.ar-eyebrow--line::before { content: ''; width: 26px; height: 1px; background: var(--accent); }

.ar-heading {
	font-weight: 700;
	font-size: clamp(26px, 3.4vw, 38px);
	line-height: 1.12; letter-spacing: -.02em;
}
/* Left-aligned section headings run the full width of their block;
   centred ones stay measure-bound so they read as a centred intro. */
.ar-sect-head { max-width: none; }
.ar-sect-head--center { margin-inline: auto; text-align: center; max-width: 640px; }
.ar-sect-head__lead { margin: 14px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--text-3); }

.ar-split-head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 20px; flex-wrap: wrap; margin-bottom: 30px;
}
.ar-split-head .ar-sect-head { margin: 0; }
.ar-split-head__note { max-width: 380px; font-size: 14px; line-height: 1.55; color: var(--text-3); }
.ar-more-link { color: var(--text-3); font-size: 14px; font-weight: 600; transition: color .2s; }
.ar-more-link:hover { color: var(--accent); }

.ar-card { border-radius: 14px; background: var(--surface); border: 1px solid var(--line-07); }

.ar-chip {
	display: inline-flex; padding: 5px 11px; border-radius: 999px;
	background: rgba(111, 214, 232, .12); border: 1px solid rgba(111, 214, 232, .28);
	color: var(--accent); font-size: 11px; font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase;
}
.ar-chip--spec {
	background: var(--acc-10); border-color: var(--acc-line);
	color: #DDE2E6; font-size: 13px; font-weight: 600;
	letter-spacing: 0; text-transform: none; padding: 7px 13px; border-radius: 8px;
}
.ar-chips { display: flex; flex-wrap: wrap; gap: 9px; }

.ar-tick { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
.ar-tick__mark { color: var(--accent); font-weight: 700; flex: none; }
.ar-ticks { display: flex; flex-direction: column; gap: 8px; }

.ar-icon-box {
	width: 46px; height: 46px; border-radius: 12px; flex: none;
	background: var(--acc-10); border: 1px solid rgba(111, 214, 232, .2);
	display: flex; align-items: center; justify-content: center; color: var(--accent);
}

.ar-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.ar-tabs--center { justify-content: center; margin-bottom: 22px; }
.ar-tab {
	padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 13px;
	border: 1px solid var(--line-14); background: transparent; color: var(--text-3);
	transition: all .2s;
}
.ar-tab:hover { border-color: var(--acc-line-strong); color: #fff; }
.ar-tab.is-active { border-color: var(--accent); background: var(--acc-14); color: var(--accent); }

.ar-panel { border-radius: var(--r-lg); padding: clamp(32px, 4vw, 52px); }
.ar-panel--teal {
	background: linear-gradient(120deg, var(--teal-deep), var(--surface-3) 62%);
	border: 1px solid rgba(111, 214, 232, .18);
}
.ar-panel--plain { background: var(--surface-3); border: 1px solid var(--line-07); border-radius: 20px; }
.ar-panel--outline { background: var(--surface-3); border: 1px solid rgba(111, 214, 232, .2); border-radius: 20px; padding: clamp(24px, 3.5vw, 44px); }

.ar-stars { color: var(--accent); letter-spacing: 2px; font-size: 15px; }

.ar-notice { margin: 0 var(--gut) 24px; padding: 16px 20px; border-radius: 12px; font-weight: 600; }
.ar-notice--ok { background: rgba(111, 214, 232, .12); border: 1px solid var(--acc-line-strong); color: var(--accent-soft); }
.ar-notice--err { background: rgba(232, 111, 111, .1); border: 1px solid rgba(232, 111, 111, .45); color: #F2B3B3; }

/* 4. Layout
--------------------------------------------------- */
/* GP wrappers stay neutral. */
#page, .site-content { width: 100%; }

/* Topbar */
.ar-topbar {
	display: flex; align-items: center; justify-content: center; gap: 20px;
	padding: 9px var(--gut); background: var(--bg-deep);
	border-bottom: 1px solid var(--line-06);
	font-size: 12.5px; color: var(--text-4); flex-wrap: wrap;
}
.ar-topbar__item { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.ar-topbar__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: arPulse 2s infinite; }
.ar-topbar__sep { opacity: .4; }
.ar-topbar__phone { color: inherit; white-space: nowrap; }
.ar-topbar__phone:hover { color: #fff; }

/* Header */
.ar-header {
	position: sticky; top: 0; z-index: 50;
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	padding: 16px var(--gut);
	background: rgba(11, 12, 14, .82);
	-webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line-08);
}
.admin-bar .ar-header { top: 32px; }

.ar-header__left { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); min-width: 0; }
.ar-header__right { display: flex; align-items: center; gap: 14px; }

/* Brand SVG (white wordmark + red emblem); height drives the size, width follows. */
.ar-logo { display: inline-flex; align-items: center; flex: none; }
.ar-logo__svg { display: block; height: 46px; width: auto; }
.ar-logo:hover .ar-logo__svg { opacity: .85; transition: opacity .2s; }

.ar-nav__list { display: flex; gap: clamp(14px, 1.6vw, 26px); align-items: center; }
.ar-nav__item { position: relative; }
.ar-nav__link {
	display: inline-block; padding-bottom: 4px;
	color: var(--text-3); font-weight: 600; font-size: 14.5px; white-space: nowrap;
	border-bottom: 2px solid transparent;
	transition: color .2s, border-color .2s;
}
.ar-nav__link:hover { color: #fff; }
.ar-nav__link.is-active { color: #fff; border-bottom-color: var(--accent); }
.ar-nav__caret { font-size: 11px; }

/* Dropdowns */
.ar-dropdown {
	position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
	padding-top: 16px; z-index: 60;
	opacity: 0; visibility: hidden; translate: 0 6px;
	transition: opacity .18s ease, translate .18s ease, visibility .18s;
}
.ar-nav__item--dropdown:hover .ar-dropdown,
.ar-nav__item--dropdown:focus-within .ar-dropdown,
.ar-nav__item--dropdown.is-open .ar-dropdown { opacity: 1; visibility: visible; translate: 0 0; }
.ar-dropdown__panel {
	width: 360px; max-height: min(70vh, 640px); overflow: auto;
	background: var(--surface-pop); border: 1px solid var(--line-10);
	border-radius: 16px; padding: 10px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
}
.ar-dropdown--resources .ar-dropdown__panel { width: 320px; padding: 8px; }
.ar-dropdown__group-label {
	padding: 10px 12px 5px; font-size: 10.5px; font-weight: 700;
	letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.ar-dropdown__link {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 9px 12px; border-radius: 10px; transition: background .18s;
}
.ar-dropdown__link:hover { background: var(--acc-10); }
.ar-dropdown__name { font-weight: 600; font-size: 13.5px; color: #fff; }
.ar-dropdown__en { font-size: 10.5px; color: var(--accent); letter-spacing: .02em; white-space: nowrap; }
.ar-dropdown__tag {
	font-size: 10px; font-weight: 700; letter-spacing: .06em; color: var(--accent);
	border: 1px solid rgba(111, 214, 232, .3); padding: 2px 6px; border-radius: 5px; flex: none;
}

/* Burger */
.ar-burger {
	display: none; width: 44px; height: 44px; border-radius: 11px; flex: none;
	border: 1px solid rgba(255, 255, 255, .16); background: transparent; color: #fff;
	align-items: center; justify-content: center;
}
.ar-burger:hover { border-color: var(--acc-line-strong); }

/* Mobile nav */
/* Full overlay under the header: covers the page instead of pushing it down.
   `top` is set by JS to the header's real bottom edge (topbar may still show). */
.ar-mobile-nav {
	position: fixed; left: 0; right: 0; bottom: 0;
	top: var(--header-h); z-index: 49;
	background: var(--surface-pop); border-top: 1px solid var(--line-10);
	overflow-y: auto; -webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}
.ar-mobile-nav__inner { display: flex; flex-direction: column; padding: 16px var(--gut) 40px; }
/* Sized for thumbs: each row clears the 48px touch-target minimum. */
.ar-mobile-nav__link {
	padding: 15px 4px; border-bottom: 1px solid var(--line-07);
	font-weight: 600; font-size: 18px; color: #fff;
}
.ar-mobile-nav__link.is-active { color: var(--accent); }
/* Row = link + caret button; the caret expands the product list. */
.ar-mobile-nav__row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ar-mobile-nav__row .ar-mobile-nav__link { flex: 1 1 auto; border-bottom: 0; }
.ar-mobile-nav__toggle {
	flex: none; width: 40px; height: 40px; border-radius: 50%;
	background: rgba(255, 255, 255, .05); border: 1px solid var(--line-14);
	color: var(--accent);
	display: flex; align-items: center; justify-content: center;
	transition: transform .25s ease, background .2s, border-color .2s;
}
.ar-mobile-nav__toggle:hover { background: var(--acc-10); border-color: var(--acc-line); }
.ar-mobile-nav__toggle[aria-expanded="true"] {
	transform: rotate(180deg);
	background: var(--acc-14); border-color: var(--accent);
}
.ar-mobile-nav__toggle svg { display: block; }
.ar-mobile-nav__sub { display: flex; flex-direction: column; padding: 0 0 12px 12px; border-bottom: 1px solid var(--line-07); }
.ar-mobile-nav__group {
	padding: 13px 4px 5px; font-size: 11px; font-weight: 700;
	letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.ar-mobile-nav__sub-link { padding: 10px 4px; font-size: 16px; color: var(--text-3); }
.ar-mobile-nav__sub-link:hover { color: #fff; }

/* Footer */
.ar-footer { border-top: 1px solid var(--line-08); padding: clamp(40px, 5vw, 56px) var(--gut) 30px; background: var(--bg-deep); }
.ar-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; margin-bottom: 44px; }
.ar-footer__brand { min-width: 220px; }
.ar-logo--footer { margin-bottom: 16px; }
.ar-logo--footer .ar-logo__svg { height: 30px; }
.ar-footer__about { font-size: 13.5px; line-height: 1.65; color: var(--faint); max-width: 260px; }
.ar-footer__col-title {
	margin: 0 0 14px; font-family: var(--font-body);
	font-size: 12px; font-weight: 700; letter-spacing: .1em;
	text-transform: uppercase; color: var(--muted);
}
.ar-footer__links { display: flex; flex-direction: column; gap: 9px; }
.ar-footer__links a { font-size: 13.5px; color: var(--text-3); }
.ar-footer__links a:hover { color: #fff; }
.ar-footer__contact { font-size: 13.5px; line-height: 1.7; color: var(--text-3); }
.ar-footer__contact a { color: inherit; }
.ar-footer__contact a:hover { color: #fff; }
.ar-footer__bottom {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding-top: 22px; border-top: 1px solid var(--line-07);
	font-size: 12.5px; color: var(--muted); flex-wrap: wrap;
}
/* Social icons sit under the contact address, in the footer's last column. */
.ar-footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.ar-footer__social {
	width: 38px; height: 38px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: rgba(255, 255, 255, .04); border: 1px solid var(--line-10);
	color: var(--text-3);
	transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.ar-footer__social:hover {
	color: var(--accent); background: var(--acc-10);
	border-color: var(--acc-line); transform: translateY(-2px);
}
.ar-footer__social svg { display: block; }
/* Author credit: right end of the bottom bar, where the socials used to be. */
.ar-footer__credit a { color: var(--text-3); }
.ar-footer__credit a:hover { color: var(--accent); }

/* Quote band */
.ar-quote-band { padding: 0 var(--gut) var(--sect-gap); }
.ar-quote-band__panel {
	position: relative; overflow: hidden; border-radius: var(--r-lg);
	border: 1px solid rgba(111, 214, 232, .25);
	background: linear-gradient(120deg, var(--teal-deep), var(--bg) 62%);
	padding: clamp(36px, 5vw, 56px);
}
.ar-quote-band__glow { position: absolute; inset: 0; background: radial-gradient(circle at 88% 15%, rgba(111, 214, 232, .22), transparent 46%); pointer-events: none; }
.ar-quote-band__grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; align-items: center; }
.ar-quote-band__title { font-weight: 700; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 12px; }
.ar-quote-band__text { font-size: 15.5px; line-height: 1.6; color: #B7C4C9; }
.ar-quote-band__actions { display: flex; gap: 12px; justify-content: flex-end; align-items: center; flex-wrap: wrap; }

/* 5. Home sections
--------------------------------------------------- */
/* Hero */
.ar-hero { position: relative; min-height: min(86vh, 720px); display: flex; align-items: flex-end; overflow: hidden; }
.ar-hero__bg { position: absolute; inset: 0; animation: arZoom 20s ease-in-out infinite alternate; }
.ar-hero__img { width: 100%; height: 100%; object-fit: cover; }
/* Vertical fade seats the copy; the horizontal one guards it where the light
   car body would otherwise sit behind white text. */
.ar-hero__fade {
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(11, 12, 14, .8) 0%, rgba(11, 12, 14, .5) 38%, rgba(11, 12, 14, .12) 62%, transparent 78%),
		linear-gradient(180deg, rgba(11, 12, 14, .55) 0%, rgba(11, 12, 14, .1) 34%, rgba(11, 12, 14, .97) 100%);
}
.ar-hero__tint { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(111, 214, 232, .18), transparent 46%); }
.ar-hero__content { position: relative; width: 100%; padding: 0 var(--gut) clamp(48px, 7vh, 80px); }
.ar-hero__inner { max-width: 760px; }
.ar-hero__title {
	font-weight: 800; font-size: clamp(42px, 6vw, 68px);
	line-height: 1.0; letter-spacing: -.025em;
}
.ar-hero__lead { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.6; color: var(--text-2); max-width: 560px; margin: 22px 0 34px; }
.ar-hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.ar-hero__scroll {
	position: absolute; right: var(--gut); bottom: 64px;
	width: 22px; height: 36px; border: 1.5px solid rgba(255, 255, 255, .4); border-radius: 12px;
}
.ar-hero__scroll-dot {
	position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
	width: 3px; height: 7px; border-radius: 2px; background: var(--accent);
	animation: arScroll 1.8s infinite;
}

/* Stats */
.ar-stats { position: relative; z-index: 5; margin-top: clamp(-44px, -5vh, -36px); padding: 0 var(--gut); }
.ar-stats__panel {
	border-radius: 18px; border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(13, 15, 18, .66);
	-webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
	box-shadow: 0 30px 70px rgba(0, 0, 0, .5); overflow: hidden;
}
.ar-stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: rgba(255, 255, 255, .09); }
.ar-stat { padding: 26px clamp(18px, 2.2vw, 32px); background: rgba(13, 15, 18, .82); }
.ar-stat__value {
	font-family: var(--font-display); font-weight: 800;
	font-size: clamp(30px, 3.2vw, 40px); letter-spacing: -.01em;
	background: linear-gradient(180deg, #FFFFFF 25%, var(--accent));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.ar-stat__label { font-size: 13px; color: var(--text-4); margin-top: 5px; }

/* Wholesale */
.ar-wholesale { padding: clamp(48px, 7vh, 72px) var(--gut) 0; }
.ar-wholesale__head { margin-bottom: 36px; }
/* Heading stays measure-bound; body copy runs the full panel in two columns
   so a wide block still reads at a comfortable line length. */
.ar-wholesale__head .ar-eyebrow { max-width: 680px; }
.ar-wholesale__head .ar-heading { margin-bottom: 20px; }
.ar-wholesale__lead { color: #B7C4C9; font-size: 15px; line-height: 1.75; }
.ar-wholesale__lead p + p { margin-top: 14px; }
.ar-wholesale__intro { font-size: clamp(15.5px, 1.4vw, 17px); line-height: 1.65; color: #C9D6DB; }
.ar-wholesale__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.ar-supply { border-top: 1px solid rgba(111, 214, 232, .28); padding-top: 18px; }
.ar-supply__title { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.ar-supply__text { font-size: 13.5px; line-height: 1.55; color: var(--text-4); }

/* Compare slider */
.ar-compare-sect { padding: var(--sect-gap) var(--gut) 20px; }
.ar-compare-sect .ar-sect-head--center { margin-bottom: 34px; }
/* Box matches the photo's own ratio, so object-fit: cover crops nothing and
   the whole car stays visible. */
.ar-compare {
	position: relative; max-width: 1000px; margin: 0 auto;
	border-radius: 20px; overflow: hidden;
	aspect-ratio: 894 / 478; min-height: 210px;
	box-shadow: 0 26px 60px rgba(0, 0, 0, .5); user-select: none;
	border: 1px solid var(--line-08);
}
/* Both sides are real photos of the same car; only the glass differs.
   No filter/overlay here on purpose — faking the tint would darken the whole
   frame and break the pixel-identical body/sky the comparison relies on. */
.ar-compare__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ar-compare__clip { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); }
.ar-compare__badge {
	position: absolute; top: 16px; padding: 6px 13px; border-radius: 999px;
	font-size: 12px; font-weight: 700; pointer-events: none;
}
.ar-compare__badge--left { left: 18px; background: rgba(255, 255, 255, .9); color: #111; }
.ar-compare__badge--right { right: 18px; background: rgba(6, 32, 40, .8); color: var(--accent); }
.ar-compare__handle {
	position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
	background: #fff; box-shadow: 0 0 18px rgba(0, 0, 0, .5);
	pointer-events: none; transform: translateX(-1px);
}
.ar-compare__knob {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--accent); color: var(--on-accent); font-weight: 800;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 6px 20px rgba(111, 214, 232, .5);
}
.ar-compare__range {
	position: absolute; inset: 0; width: 100%; height: 100%;
	opacity: 0; z-index: 3; margin: 0; padding: 0;
	-webkit-appearance: none; appearance: none; background: transparent; cursor: ew-resize;
}
.ar-compare__range::-webkit-slider-thumb { -webkit-appearance: none; width: 54px; height: 520px; background: transparent; cursor: ew-resize; }
.ar-compare__range::-moz-range-thumb { border: none; width: 54px; height: 520px; background: transparent; cursor: ew-resize; }

/* Products grid */
.ar-products-sect { padding: var(--sect-gap) var(--gut) 20px; }
.ar-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.ar-product-card {
	position: relative; display: block; aspect-ratio: 3 / 4;
	border-radius: 14px; overflow: hidden; border: 1px solid var(--line-08);
	transition: transform .3s ease, border-color .3s ease;
}
.ar-product-card:hover { transform: translateY(-6px); border-color: var(--acc-line-strong); }
.ar-product-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ar-product-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 12, 14, .05) 28%, rgba(11, 12, 14, .93) 100%); }
.ar-product-card__num {
	position: absolute; top: 14px; left: 16px;
	font-family: var(--font-display); font-weight: 600; font-size: 12px;
	color: var(--accent); letter-spacing: .12em;
}
.ar-product-card__body { position: absolute; left: 16px; right: 16px; bottom: 16px; }
.ar-product-card__name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; line-height: 1.18; }
.ar-product-card__tag { display: block; font-size: 12.5px; color: #B4BBC1; margin-top: 5px; }

/* Series */
.ar-series-sect { padding: var(--sect-gap) var(--gut) 0; }
.ar-series-sect--product { padding-top: clamp(44px, 6vh, 72px); }
.ar-series-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.ar-series-card {
	position: relative; overflow: hidden; display: block;
	padding: 30px 28px; border-radius: 18px;
	background: var(--surface); border: 1px solid var(--line-08);
	transition: transform .25s ease, border-color .25s ease;
}
.ar-series-card:hover { transform: translateY(-6px); border-color: var(--acc-line-strong); }
.ar-series-card__watermark {
	position: absolute; top: -30px; right: -8px;
	font-family: var(--font-display); font-weight: 800; font-size: 140px; line-height: 1;
	color: rgba(111, 214, 232, .07); pointer-events: none;
}
.ar-series-card__body { position: relative; display: block; }
.ar-series-card__name { display: block; font-family: var(--font-display); font-weight: 800; font-size: 26px; color: #fff; margin: 16px 0 4px; }
.ar-series-card__sub { display: block; font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.ar-series-card__pts { display: flex; flex-direction: column; gap: 9px; }
.ar-series-card__more { display: block; margin-top: 20px; font-size: 13.5px; font-weight: 700; color: var(--accent); }

/* Values */
.ar-values-sect { padding: clamp(20px, 3vh, 36px) var(--gut) var(--sect-gap); }
.ar-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 54px; align-items: start; }
.ar-values-intro .ar-heading { margin-bottom: 18px; }
.ar-values-intro__text { font-size: 15.5px; line-height: 1.65; color: var(--text-3); margin-bottom: 26px; }
.ar-values-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.ar-value-card { padding: 26px; }
.ar-value-card__kicker { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--accent); }
.ar-value-card__title { font-family: var(--font-body); font-weight: 700; font-size: 15.5px; margin: 10px 0 6px; }
.ar-value-card__text { font-size: 13.5px; line-height: 1.55; color: var(--text-4); }

/* Process */
.ar-process-sect { padding: 0 var(--gut) var(--sect-gap); }
.ar-process-sect .ar-sect-head--center { margin-bottom: 40px; }
.ar-process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
/* Number column, vertically centred; title + text stack beside it. */
.ar-process-step {
	display: grid; grid-template-columns: auto minmax(0, 1fr);
	column-gap: 16px; row-gap: 0;
}
.ar-process-step > :not(.ar-process-step__num) { grid-column: 2; }
.ar-process-step__num {
	width: 38px; height: 38px; border-radius: 50%; flex: none;
	background: var(--accent); color: var(--on-accent);
	font-family: var(--font-display); font-weight: 800; font-size: 15px;
	display: flex; align-items: center; justify-content: center;
	grid-column: 1; grid-row: 1 / span 3; align-self: center;
}
.ar-process-step__title { font-family: var(--font-body); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.ar-process-step__text { font-size: 14px; line-height: 1.6; color: var(--text-4); }

/* Applications & care cards */
.ar-apps-sect { padding: 0 var(--gut) var(--sect-gap); }
.ar-apps-sect .ar-sect-head--center { margin-bottom: 34px; }
.ar-apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
/* Icon column + stacked text. The icon spans the text rows (empty implicit
   rows collapse to 0), so it sits vertically centred with no extra markup. */
.ar-app-card {
	padding: 26px;
	display: grid; grid-template-columns: auto minmax(0, 1fr);
	column-gap: 16px; row-gap: 0;
}
.ar-app-card > :not(.ar-icon-box) { grid-column: 2; }
.ar-app-card > .ar-icon-box { grid-column: 1; grid-row: 1 / span 3; align-self: center; margin-bottom: 0; }
.ar-app-card__en { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.ar-app-card__title { font-family: var(--font-body); font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.ar-app-card__text { font-size: 13.5px; line-height: 1.55; color: var(--text-4); }

/* Gallery */
.ar-gallery-sect { padding: 0 var(--gut) var(--sect-gap); }
.ar-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.ar-gallery-card {
	position: relative; aspect-ratio: 4 / 3; border-radius: 14px;
	overflow: hidden; border: 1px solid var(--line-07);
}
.ar-gallery-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ar-gallery-card:hover .ar-gallery-card__img { transform: scale(1.05); }
.ar-gallery-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 12, 14, 0) 45%, rgba(11, 12, 14, .85) 100%); pointer-events: none; }
/* Dark pill, not a translucent tint: photos range from a white studio to a
   dusk street, and a tinted chip disappears on the light ones. */
.ar-gallery-card__chip {
	position: absolute; top: 13px; left: 13px;
	font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	padding: 5px 11px; border-radius: 999px;
	background: rgba(8, 9, 10, .82); color: var(--accent);
	-webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
	border: 1px solid rgba(111, 214, 232, .3);
	pointer-events: none;
}
.ar-gallery-card__cap { position: absolute; left: 16px; right: 16px; bottom: 15px; font-weight: 600; font-size: 15px; color: #fff; pointer-events: none; }
.ar-gallery-card.is-hidden { display: none; }

/* Reviews */
.ar-reviews-sect { padding: 0 var(--gut) var(--sect-gap); }
.ar-reviews-badge { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-4); }
.ar-reviews-badge .ar-stars { font-size: 18px; }
.ar-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.ar-review-card { padding: 30px; border-radius: 16px; }
.ar-review-card__stars { margin-bottom: 14px; }
.ar-review-card__quote { font-size: 15.5px; line-height: 1.6; color: #DDE2E6; margin-bottom: 22px; }
.ar-review-card__author { font-style: normal; font-weight: 700; font-size: 14px; color: #fff; }
.ar-review-card__meta { font-size: 13px; color: var(--faint); }

/* Certs */
.ar-certs-sect { padding: 0 var(--gut) var(--sect-gap); }
.ar-certs-sect .ar-sect-head--center { margin-bottom: 32px; }
.ar-certs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.ar-cert-card { padding: 28px 22px; border-radius: 16px; text-align: center; }
.ar-cert-card__icon {
	width: 66px; height: 66px; border-radius: 50%;
	border: 2px solid rgba(111, 214, 232, .5); background: var(--acc-08);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 16px; color: var(--accent);
}
.ar-cert-card__title { font-weight: 700; font-size: 15.5px; margin-bottom: 6px; }
.ar-cert-card__text { font-size: 13px; line-height: 1.5; color: var(--text-4); }
.ar-certs-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 22px; }

/* 6. Inner pages
--------------------------------------------------- */
/* Page hero */
.ar-page-hero { position: relative; overflow: hidden; padding: clamp(56px, 9vh, 110px) var(--gut) clamp(36px, 5vh, 56px); }
.ar-page-hero--right::before, .ar-page-hero--left::before {
	content: ''; position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(circle at 82% 8%, var(--acc-14), transparent 45%);
}
.ar-page-hero--left::before { background: radial-gradient(circle at 18% 10%, rgba(111, 214, 232, .13), transparent 45%); }
.ar-page-hero--plain { padding-bottom: 16px; }
.ar-page-hero__inner { position: relative; max-width: 800px; }
.ar-page-hero__title {
	font-weight: 800; font-size: clamp(36px, 5.4vw, 58px);
	line-height: 1.03; letter-spacing: -.025em;
}
.ar-page-hero__lead { font-size: clamp(16px, 1.6vw, 18px); line-height: 1.6; color: var(--text-3); margin-top: 20px; }
/* Space the CTA row away from the lead in page heroes (e.g. Školenie). */
.ar-page-hero .ar-hero__actions { margin-top: clamp(26px, 3.4vh, 36px); }

/* Produkty archive */
.ar-catalog { padding: clamp(40px, 6vh, 72px) var(--gut) clamp(20px, 4vh, 40px); border-top: 1px solid var(--line-08); display: flex; flex-direction: column; gap: clamp(40px, 6vw, 64px); }
.ar-catalog__group-head {
	display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
	margin-bottom: clamp(18px, 2.5vw, 28px); padding-bottom: 14px;
	border-bottom: 1px solid rgba(111, 214, 232, .25);
}
.ar-catalog__group-title { font-weight: 700; font-size: clamp(23px, 2.8vw, 30px); letter-spacing: -.02em; }
.ar-catalog__group-en { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.ar-catalog__rows { display: flex; flex-direction: column; gap: clamp(24px, 4vw, 44px); }
.ar-catalog-row {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(24px, 3vw, 44px); align-items: center;
	padding-bottom: clamp(24px, 4vw, 44px); border-bottom: 1px solid var(--line-08);
}
.ar-catalog-row__media { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--line-08); }
.ar-catalog-row__img { width: 100%; height: 100%; object-fit: cover; }
.ar-catalog-row__num {
	position: absolute; top: 14px; left: 14px;
	font-family: var(--font-display); font-weight: 600; font-size: 12px;
	color: var(--on-accent); background: var(--accent);
	padding: 4px 10px; border-radius: 999px; letter-spacing: .08em;
}
.ar-catalog-row__title { font-weight: 700; font-size: clamp(24px, 3vw, 32px); letter-spacing: -.02em; margin-bottom: 12px; }
.ar-catalog-row__text { font-size: 15px; line-height: 1.65; color: var(--text-3); margin-bottom: 16px; }
.ar-catalog-row .ar-ticks { margin-bottom: 18px; }
.ar-catalog-row .ar-ticks .ar-tick { font-size: 14px; }
.ar-catalog-row .ar-chips { margin-bottom: 22px; }
.ar-catalog-row__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.ar-downloads-sect { padding: clamp(28px, 4vh, 48px) var(--gut) clamp(20px, 4vh, 40px); }
.ar-downloads-sect__inner { border-top: 1px solid var(--line-10); padding-top: clamp(32px, 4vw, 48px); }
.ar-downloads-sect .ar-sect-head { margin-bottom: 26px; }
.ar-downloads-note { font-size: 12.5px; color: var(--muted); margin-top: 16px; }

/* Resources / downloads */
.ar-resources-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.ar-resource-card {
	display: flex; align-items: center; gap: 14px; padding: 20px;
	border-radius: 14px; background: var(--surface); border: 1px solid var(--line-08);
	transition: border-color .2s, transform .2s;
}
.ar-resource-card:hover { border-color: rgba(111, 214, 232, .5); }
.ar-resources-grid--big .ar-resource-card { padding: 22px; border-radius: 16px; }
.ar-resources-grid--big .ar-resource-card:hover { transform: translateY(-4px); }
.ar-resource-card__body { flex: 1; min-width: 0; }
.ar-resource-card__title { display: block; font-weight: 700; font-size: 15px; color: #fff; }
.ar-resources-grid--big .ar-resource-card__title { font-family: var(--font-display); font-size: 16px; }
.ar-resource-card__desc { display: block; font-size: 12.5px; color: var(--text-4); margin-top: 3px; line-height: 1.45; }
.ar-resource-card__tag {
	font-size: 10.5px; font-weight: 700; letter-spacing: .08em; color: var(--accent);
	border: 1px solid rgba(111, 214, 232, .3); padding: 3px 7px; border-radius: 6px; flex: none;
}

/* Offer block (Dokumentácia page) */
.ar-offer-sect { padding: clamp(20px, 3vh, 36px) var(--gut) clamp(20px, 3vh, 36px); }
.ar-offer-sect .ar-sect-head { margin-bottom: 26px; }
.ar-offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.ar-offer-card {
	padding: 26px;
	display: grid; grid-template-columns: auto minmax(0, 1fr);
	column-gap: 16px; row-gap: 0;
}
.ar-offer-card > :not(.ar-icon-box) { grid-column: 2; }
.ar-offer-card > .ar-icon-box { grid-column: 1; grid-row: 1 / span 3; align-self: center; margin-bottom: 0; }
.ar-offer-card__title { font-family: var(--font-body); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.ar-offer-card__text { font-size: 13.5px; line-height: 1.6; color: var(--text-4); }
.ar-offer-cta {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px; align-items: center; margin-top: 26px;
	padding: clamp(26px, 3vw, 36px); border-radius: 18px;
	background: linear-gradient(120deg, var(--teal-deep), var(--surface-3) 62%);
	border: 1px solid rgba(111, 214, 232, .18);
}
.ar-offer-cta__title { font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -.02em; margin-bottom: 10px; }
.ar-offer-cta__text { font-size: 14.5px; line-height: 1.65; color: #B7C4C9; }
.ar-offer-cta__actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

@media (max-width: 640px) {
	.ar-offer-cta__actions { justify-content: flex-start; }
}

/* Školenie (training) page */
.ar-skolenie-sect { padding: 0 var(--gut) clamp(40px, 6vh, 72px); }
.ar-skolenie-sect .ar-sect-head { margin-bottom: 26px; }
/* Fixed 3-up grid: 6 topics set as 3+3 instead of an orphaned auto-fit row. */
.ar-apps-grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .ar-apps-grid--three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .ar-apps-grid--three { grid-template-columns: 1fr; } }
.ar-training-tools {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(24px, 3.5vw, 52px); align-items: center;
}
.ar-training-tools__media { border-radius: 16px; overflow: hidden; border: 1px solid var(--line-08); }
.ar-training-tools__media img { width: 100%; height: 100%; object-fit: cover; }
.ar-training-tools .ar-heading { font-size: clamp(22px, 2.8vw, 30px); margin-bottom: 14px; }
.ar-training-tools__text { font-size: 15px; line-height: 1.7; color: var(--text-3); margin-bottom: 20px; }
.ar-training-tools__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Certification documents */
.ar-docs-sect { padding: clamp(20px, 3vh, 36px) var(--gut) clamp(28px, 4vh, 44px); }
.ar-docs-sect .ar-sect-head { margin-bottom: 26px; }
.ar-docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; }
.ar-doc-card {
	display: flex; align-items: center; gap: 14px; padding: 20px;
	border-radius: 14px; background: var(--surface); border: 1px solid var(--line-08);
	transition: border-color .2s, transform .2s;
}
.ar-doc-card:hover { border-color: var(--acc-line-strong); transform: translateY(-3px); }
.ar-doc-card__icon { width: 44px; height: 44px; border-radius: 11px; }
.ar-doc-card__body { flex: 1; min-width: 0; }
.ar-doc-card__title { display: block; font-weight: 700; font-size: 14.5px; color: #fff; }
.ar-doc-card__desc { display: block; font-size: 12.5px; color: var(--text-4); margin-top: 3px; line-height: 1.45; }
.ar-doc-card__meta { display: block; font-size: 11.5px; color: var(--muted); margin-top: 5px; }
.ar-doc-card__tag {
	font-size: 10.5px; font-weight: 700; letter-spacing: .06em; color: var(--accent);
	border: 1px solid rgba(111, 214, 232, .3); padding: 3px 7px; border-radius: 6px; flex: none;
}
.ar-docs-note { font-size: 12.5px; color: var(--muted); margin-top: 16px; }
.ar-certs-note a { color: var(--accent); }

/* Breadcrumbs */
.ar-breadcrumbs { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--faint); margin-bottom: 26px; flex-wrap: wrap; }
.ar-breadcrumbs a { color: inherit; }
.ar-breadcrumbs a:hover { color: var(--accent); }
.ar-breadcrumbs__sep { opacity: .5; }
.ar-breadcrumbs span[aria-current] { color: var(--text); }

/* Product detail */
.ar-product-hero-sect { padding: clamp(40px, 6vh, 72px) var(--gut) 0; }
.ar-product-hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 52px); align-items: center; }
.ar-product-hero__title { font-weight: 800; font-size: clamp(34px, 5vw, 54px); line-height: 1.03; letter-spacing: -.025em; }
.ar-product-hero__lead { font-size: clamp(16px, 1.6vw, 18px); line-height: 1.6; color: var(--text-3); margin: 20px 0 28px; }
.ar-product-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.ar-product-hero__media { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--line-08); }
.ar-product-hero__img { width: 100%; height: 100%; object-fit: cover; }
.ar-product-hero__num {
	position: absolute; top: 16px; left: 16px;
	font-family: var(--font-display); font-weight: 600; font-size: 12px;
	color: var(--on-accent); background: var(--accent);
	padding: 5px 11px; border-radius: 999px; letter-spacing: .08em;
}

.ar-product-content { padding: clamp(44px, 6vh, 72px) var(--gut) 0; }
.ar-product-content__grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(240px, .9fr); gap: clamp(28px, 4vw, 52px); align-items: start; }

.ar-prose h2 {
	font-weight: 700; font-size: clamp(21px, 2.6vw, 27px);
	letter-spacing: -.02em; margin: 0 0 12px;
}
.ar-prose p { font-size: 15.5px; line-height: 1.72; color: var(--text-3); margin: 0 0 30px; }
.ar-prose p:last-child { margin-bottom: 0; }
.ar-prose ul, .ar-prose ol { margin: 0 0 30px 20px; color: var(--text-3); }
.ar-prose ul { list-style: disc; }
.ar-prose a { color: var(--accent); }

.ar-usecases { margin-top: 36px; }
.ar-usecases__title { font-weight: 700; font-size: clamp(19px, 2.4vw, 24px); margin-bottom: 16px; }
.ar-usecases__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.ar-usecases__item {
	display: flex; gap: 10px; align-items: center;
	padding: 14px 16px; border-radius: 12px;
	background: var(--surface); border: 1px solid var(--line-07);
	font-size: 14px; color: #DDE2E6;
}
.ar-usecases__item span { color: var(--accent); font-weight: 700; flex: none; }

.ar-product-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.ar-aside-card {
	padding: 26px; border-radius: 16px;
	background: linear-gradient(150deg, var(--teal-deep), var(--surface) 70%);
	border: 1px solid rgba(111, 214, 232, .2);
}
.ar-aside-card__title { font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.ar-aside-card__list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.ar-aside-card__list .ar-tick { font-size: 14px; color: #DDE2E6; }
.ar-aside-card__label {
	font-size: 12px; font-weight: 600; letter-spacing: .1em;
	text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.ar-aside-card .ar-chips { margin-bottom: 22px; }
.ar-aside-card .ar-chip--spec { font-size: 12.5px; padding: 6px 12px; }

/* VLT picker */
.ar-vlt-sect { padding: clamp(44px, 6vh, 72px) var(--gut) 0; }
.ar-vlt-sect .ar-sect-head { margin-bottom: 26px; max-width: none; }
.ar-vlt { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(22px, 3vw, 40px); align-items: center; }
.ar-vlt__media { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 10; border: 1px solid var(--line-10); }
.ar-vlt__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ar-vlt__shade {
	position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(180deg, rgba(6, 10, 14, .97), rgba(8, 14, 20, .9));
	opacity: .6; transition: opacity .45s ease;
}
.ar-vlt__badge {
	position: absolute; left: 14px; bottom: 12px;
	padding: 6px 13px; border-radius: 999px;
	background: rgba(6, 32, 40, .85); color: var(--accent);
	font-size: 13px; font-weight: 800;
}
.ar-vlt__controls .ar-tabs { margin-bottom: 18px; }
.ar-vlt__desc { font-size: 14.5px; line-height: 1.6; color: #DDE2E6; margin-bottom: 20px; min-height: 44px; }
.ar-vlt__note { font-size: 12.5px; line-height: 1.55; color: var(--muted); margin-top: 4px; }
.ar-meter { margin-bottom: 14px; }
.ar-meter__row { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text-4); margin-bottom: 6px; }
.ar-meter__track { height: 8px; border-radius: 999px; background: var(--line-08); overflow: hidden; }
.ar-meter__bar { height: 100%; border-radius: 999px; transition: width .45s ease; }
.ar-meter__bar--light { width: 35%; background: linear-gradient(90deg, var(--accent), var(--accent-soft)); }
.ar-meter__bar--privacy { width: 65%; background: linear-gradient(90deg, #3E6E7A, var(--accent)); }

/* Product FAQ cards */
.ar-product-faq { padding: clamp(44px, 6vh, 72px) var(--gut) 0; }
.ar-product-faq__title { font-size: clamp(22px, 3vw, 32px); margin-bottom: 22px; }
.ar-faq-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr)); gap: 12px; align-items: stretch; }
.ar-faq-card { border: 1px solid rgba(255, 255, 255, .09); border-radius: 12px; background: var(--surface-2); padding: 20px 22px; }
.ar-faq-card__q { font-family: var(--font-body); font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.ar-faq-card__a { font-size: 14.5px; line-height: 1.65; color: var(--text-3); }

/* Care + others */
.ar-care-sect { padding: clamp(44px, 6vh, 72px) var(--gut) 0; }
.ar-care-sect__title { font-weight: 700; font-size: clamp(19px, 2.4vw, 24px); margin-bottom: 8px; }
.ar-care-sect__lead { font-size: 14.5px; line-height: 1.6; color: var(--text-3); margin-bottom: 18px; max-width: 640px; }
.ar-others-sect { padding: clamp(44px, 6vh, 72px) var(--gut) clamp(20px, 3vh, 36px); }
.ar-others-sect__title { font-weight: 700; font-size: clamp(19px, 2.4vw, 24px); margin-bottom: 18px; }
.ar-others { display: flex; flex-wrap: wrap; gap: 10px; }
.ar-other-chip {
	display: inline-flex; align-items: center; gap: 9px;
	padding: 11px 17px; border-radius: 999px;
	background: var(--surface); border: 1px solid var(--line-10);
	color: #DDE2E6; font-weight: 600; font-size: 13.5px;
	transition: border-color .2s, color .2s;
}
.ar-other-chip:hover { border-color: var(--acc-line-strong); color: #fff; }
.ar-other-chip__num { color: var(--accent); font-family: var(--font-display); }

/* Cennik */
.ar-cennik-downloads { padding: clamp(20px, 3vh, 36px) var(--gut); }
.ar-cennik-split { padding: clamp(20px, 3vh, 36px) var(--gut) var(--sect-gap); }
.ar-cennik-split__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.ar-cennik-card { padding: 26px; border-radius: 16px; background: var(--surface-3); }
.ar-cennik-card--accent { border-color: rgba(111, 214, 232, .3); }
.ar-cennik-card__title { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.ar-cennik-card__text { font-size: 14px; line-height: 1.6; color: var(--text-4); }

/* Gallery archive */
.ar-gallery-filter { padding: clamp(24px, 3.5vh, 40px) var(--gut) 20px; }
.ar-gallery-filter .ar-tab { padding: 10px 18px; font-size: 13.5px; }
.ar-gallery-archive { padding: 6px var(--gut) clamp(40px, 6vh, 72px); }
.ar-gallery-archive .ar-gallery-grid { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.ar-gallery-archive .ar-gallery-card { border-radius: 16px; }
.ar-empty { color: var(--text-3); }

/* About */
.ar-about-hero__grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center; }
.ar-about-hero__media { border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid var(--line-08); }
.ar-about-hero__img { width: 100%; height: 100%; object-fit: cover; }

.ar-milestones-sect { padding: clamp(20px, 3vh, 40px) var(--gut) clamp(40px, 6vh, 72px); }
.ar-milestones { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); border: 1px solid var(--line-08); border-radius: 16px; overflow: hidden; }
.ar-milestone { padding: 28px clamp(20px, 3vw, 32px); border-right: 1px solid var(--line-08); }
.ar-milestone:last-child { border-right: 0; }
.ar-milestone__year { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--accent); }
.ar-milestone__text { font-size: 14px; line-height: 1.55; color: var(--text-3); margin-top: 8px; }

.ar-world-sect { padding: 0 var(--gut) clamp(40px, 6vh, 72px); }
.ar-world-sect .ar-heading { font-size: clamp(22px, 2.8vw, 30px); margin-bottom: 8px; }
.ar-world-sect__text { font-size: 14.5px; line-height: 1.6; color: #B7C4C9; margin-bottom: 22px; max-width: 660px; }
.ar-regions { display: flex; flex-wrap: wrap; gap: 10px; }
.ar-region-pill {
	font-size: 13px; font-weight: 600; color: #DDE2E6;
	background: var(--acc-08); border: 1px solid var(--acc-line);
	padding: 8px 14px; border-radius: 999px;
}

.ar-principles-sect { padding: 0 var(--gut) clamp(40px, 6vh, 72px); }
.ar-principles-sect .ar-sect-head { margin-bottom: 28px; }
.ar-principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.ar-principle-card { padding: 30px 26px; border-radius: 16px; }
.ar-principle-card__num { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: .14em; color: var(--accent); }
.ar-principle-card__title { font-weight: 700; font-size: 18px; margin: 12px 0 8px; }
.ar-principle-card__text { font-size: 14px; line-height: 1.65; color: var(--text-4); }

.ar-about-values { padding: 0 var(--gut) clamp(40px, 6vh, 72px); }
.ar-about-values__title { text-align: center; margin-bottom: 36px; }
.ar-about-values__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.ar-about-values .ar-value-card { padding: 28px; }

/* FAQ accordion */
.ar-faq-sect { padding: 0 var(--gut) var(--sect-gap); }
.ar-faq-wrap { max-width: 840px; margin: 0 auto; }
.ar-faq-wrap .ar-sect-head--center { margin-bottom: 30px; }
.ar-accordion { display: flex; flex-direction: column; gap: 12px; }
.ar-accordion__item { border: 1px solid rgba(255, 255, 255, .09); border-radius: 12px; background: var(--surface-2); overflow: hidden; }
.ar-accordion__item.is-hidden { display: none; }
.ar-accordion__heading { margin: 0; }
.ar-accordion__head {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	width: 100%; padding: 20px 22px; background: none; border: 0; text-align: left;
	font-weight: 600; font-size: 16px; color: #fff;
}
.ar-accordion__chev { font-size: 22px; color: var(--accent); line-height: 1; transition: transform .25s; flex: none; }
.ar-accordion__head[aria-expanded="true"] .ar-accordion__chev { transform: rotate(45deg); }
.ar-accordion__body { padding: 0 22px 20px; }
.ar-accordion__body p { font-size: 14.5px; line-height: 1.65; color: var(--text-3); }

/* Contact */
.ar-contact-sect { padding: clamp(20px, 3vh, 36px) var(--gut) var(--sect-gap); }
.ar-contact-sect .ar-notice { margin: 0 0 24px; }
.ar-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 3vw, 44px); align-items: start; }
.ar-form { background: var(--surface-2); border: 1px solid var(--line-08); border-radius: 18px; padding: clamp(24px, 3vw, 36px); }
.ar-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ar-form__hp { position: absolute; left: -9999px; }
.ar-field { min-width: 0; }
.ar-field--wide { grid-column: span 2; }
.ar-field__label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-4); margin-bottom: 7px; }
.ar-field__input {
	width: 100%; padding: 13px 15px; border-radius: 10px;
	background: var(--bg); border: 1px solid var(--line-14);
	color: #fff; font-size: 14px;
}
.ar-field__input::placeholder { color: #7C848B; }
.ar-field__input:focus { outline: none; border-color: var(--accent); }
select.ar-field__input { color: var(--text-2); }
textarea.ar-field__input { resize: vertical; }
.ar-form__submit { grid-column: span 2; padding: 15px; font-size: 15px; }

.ar-contact-side { display: flex; flex-direction: column; gap: 14px; }
.ar-info-card {
	display: flex; align-items: flex-start; gap: 14px;
	padding: 20px; border-radius: 14px;
	background: var(--surface-2); border: 1px solid var(--line-07);
}
.ar-info-card .ar-icon-box { width: 42px; height: 42px; border-radius: 11px; }
.ar-info-card__label {
	font-size: 12.5px; font-weight: 600; letter-spacing: .08em;
	text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.ar-info-card__value { display: block; font-size: 15px; color: #fff; line-height: 1.5; }
a.ar-info-card__value:hover { color: var(--accent); }
.ar-map { border-radius: 14px; overflow: hidden; border: 1px solid var(--line-07); aspect-ratio: 16 / 10; background: var(--surface); }
.ar-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.15); display: block; }
/* Complianz wraps the iframe in a placeholder div — it must inherit the height
   or the map collapses to a sliver inside the block. */
.ar-map .cmplz-placeholder-parent,
.ar-map > div { width: 100%; height: 100%; }

/* Case study (single realizacia) */
.ar-case-hero-sect { padding: clamp(40px, 6vh, 72px) var(--gut) 0; }
.ar-case-hero { max-width: none; }
.ar-case-hero__chips { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.ar-case-hero__meta { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-4); }
.ar-case-hero__title { font-weight: 800; font-size: clamp(32px, 4.6vw, 52px); line-height: 1.05; letter-spacing: -.025em; }
.ar-case-hero__lead { font-size: clamp(16px, 1.6vw, 18px); line-height: 1.6; color: var(--text-3); margin-top: 18px; }
.ar-case-media-sect { padding: clamp(28px, 4vh, 44px) var(--gut) 0; }
.ar-case-media {
	position: relative; border-radius: 20px; overflow: hidden;
	border: 1px solid var(--line-08); aspect-ratio: 16 / 9;
	box-shadow: 0 26px 60px rgba(0, 0, 0, .45);
}
.ar-case-media__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ar-case-content { padding: clamp(44px, 6vh, 72px) var(--gut) 0; }
.ar-case-content__grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(260px, .9fr); gap: clamp(28px, 4vw, 52px); align-items: start; }
.ar-case-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.ar-case-meta { margin-bottom: 22px; }
.ar-case-meta__row {
	display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
	padding: 10px 0; border-bottom: 1px solid var(--line-07); font-size: 14px;
}
.ar-case-meta__row:first-child { padding-top: 0; }
.ar-case-meta__label { color: var(--muted); flex: none; }
.ar-case-meta__value { color: #fff; text-align: right; font-weight: 600; }
.ar-case-meta__value a { color: var(--accent); font-weight: 700; white-space: nowrap; }
.ar-case-related { padding: clamp(44px, 6vh, 72px) var(--gut) clamp(20px, 3vh, 36px); }
.ar-case-related__title { font-size: clamp(22px, 3vw, 32px); }

@media (max-width: 960px) {
	.ar-case-content__grid { grid-template-columns: 1fr; }
	.ar-case-aside { position: static; }
}

/* Consent checkbox */
.ar-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.55; color: var(--text-4); cursor: pointer; }
.ar-consent__box { margin: 3px 0 0; width: 16px; height: 16px; flex: none; accent-color: var(--accent); cursor: pointer; }
.ar-consent a { text-decoration: underline; text-underline-offset: 2px; }

/* Index / search fallback */
.ar-index { padding: 8px var(--gut) var(--sect-gap); }
.ar-index__list { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin-bottom: 28px; }
.ar-index__item { padding: 24px 26px; }
.ar-index__title { font-size: 20px; margin-bottom: 8px; }
.ar-index__title a { color: #fff; }
.ar-index__title a:hover { color: var(--accent); }
.ar-index__excerpt { font-size: 14.5px; line-height: 1.6; color: var(--text-3); margin-bottom: 12px; }
.ar-index .pagination, .ar-index .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.ar-index .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px;
	border: 1px solid var(--line-14); color: var(--text-3); font-weight: 600;
}
.ar-index .page-numbers.current { border-color: var(--accent); background: var(--acc-14); color: var(--accent); }
.ar-index a.page-numbers:hover { border-color: var(--acc-line-strong); color: #fff; }

/* Also applies to the consent button, which must be a <button> for Complianz. */
.ar-footer__legal {
	color: inherit; font: inherit; background: none; border: 0;
	padding: 0; cursor: pointer;
}
.ar-footer__legal:hover { color: #fff; }

/* Generic page + 404 */
.ar-page-body { padding: 8px var(--gut) var(--sect-gap); }
.ar-page-body .ar-prose { max-width: 760px; }

/* ---- Long documents (cookie policy, privacy policy) ----
   Any generic page with 3+ sections gets a sticky TOC and the full width;
   JS adds .ar-legal once it has built the list, so without JS the page simply
   stays at the default reading measure.
   The Complianz cookie policy additionally needs a dark skin: the plugin ships
   light-theme colours (white tables, grey headers) and caps itself at 800px.
   Its overrides are prefixed with .ar-page-body purely to outweigh the
   plugin's own id-based rules without resorting to !important. */
.ar-page-body .ar-prose.ar-legal { max-width: none; }
.ar-legal { display: grid; gap: 32px; align-items: start; }
.ar-legal__body { min-width: 0; }
@media (min-width: 1000px) {
	.ar-legal { grid-template-columns: 250px minmax(0, 1fr); gap: 56px; }
	.ar-legal__toc { position: sticky; top: calc(var(--header-h) + 20px); max-height: calc(100vh - var(--header-h) - 40px); overflow-y: auto; }
}
.ar-legal__toc {
	padding: 20px 20px 22px; border: 1px solid var(--line-10);
	border-radius: var(--r-lg); background: var(--surface-2);
}
.ar-legal__toc-title {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
	text-transform: uppercase; color: var(--muted); cursor: pointer;
	list-style: none; /* hides the default disclosure triangle */
}
.ar-legal__toc-title::-webkit-details-marker { display: none; }
.ar-legal__toc[open] .ar-legal__toc-title { margin-bottom: 12px; }
/* Chevron drawn from borders — no extra asset for one arrow. */
.ar-legal__toc-title::after {
	content: ''; flex: none; width: 7px; height: 7px;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg); transition: transform .25s ease;
}
.ar-legal__toc[open] .ar-legal__toc-title::after { transform: translateY(1px) rotate(-135deg); }
@media (min-width: 1000px) {
	.ar-legal__toc-title { cursor: default; }
	.ar-legal__toc-title::after { display: none; }
}
.ar-legal__toc ul { list-style: none; margin: 0; padding: 0; }
.ar-legal__toc a {
	display: block; padding: 7px 0 7px 12px; font-size: 13.5px; line-height: 1.4;
	color: var(--text-4); border-left: 2px solid transparent;
	transition: color .2s, border-color .2s;
}
.ar-legal__toc a:hover { color: #fff; }
.ar-legal__toc a.is-active { color: var(--accent); border-left-color: var(--accent); }

/* The plugin caps its document at 800px — release it, then keep only the body
   copy to a readable measure so tables and cards can use the full column. */
.ar-page-body #cmplz-document { max-width: none; }
.ar-legal__body > p,
.ar-legal__body > ul,
.ar-legal__body > #cmplz-document > p,
.ar-legal__body > #cmplz-document > ul { max-width: 92ch; }
.ar-legal__body h2 { scroll-margin-top: calc(var(--header-h) + 24px); }
.ar-page-body #cmplz-document h3 {
	font-family: var(--font-display); font-weight: 700; font-size: 19px;
	color: var(--text); margin: 34px 0 14px;
}
.ar-page-body #cmplz-document h4 { font-size: 14px; font-weight: 700; color: var(--text-2); }

/* Service cards (one per cookie provider) */
.ar-page-body #cmplz-document .cmplz-dropdown {
	background: var(--surface-2); border: 1px solid var(--line-10);
	border-radius: var(--r-md); overflow: hidden; margin-bottom: 12px;
}
.ar-page-body #cmplz-document .cmplz-dropdown summary {
	margin: 0; padding: 14px 18px; background: rgba(255, 255, 255, .04);
	transition: background .2s;
}
.ar-page-body #cmplz-document .cmplz-dropdown[open] summary { border-bottom: 1px solid var(--line-07); }
.ar-page-body #cmplz-document .cmplz-dropdown summary:hover { background: var(--acc-08); }
.ar-page-body #cmplz-document .cmplz-dropdown summary h3 { margin: 0; font-size: 16px; color: var(--text); }
.ar-page-body #cmplz-document .cmplz-dropdown summary p { font-size: 12.5px; color: var(--muted); }
/* The plugin's chevron is a dark SVG image — invert it for the dark surface. */
.ar-page-body #cmplz-document .cmplz-dropdown summary div:after { filter: invert(1); opacity: .5; }
.ar-page-body #cmplz-document .cmplz-dropdown h4 { margin: 16px 0 6px; font-size: 13px; }
.ar-page-body #cmplz-document .cmplz-dropdown p { font-size: 13.5px; line-height: 1.6; color: var(--text-3); margin-bottom: 10px; }

/* Cookie table: the plugin lays it out with grid, we only recolour the cells. */
.ar-page-body #cmplz-document .cookies-per-purpose {
	margin: 4px 18px 18px; border: 1px solid var(--line-10); border-radius: 10px;
	overflow: hidden; background: var(--line-10);
}
/* The plugin's `grid-template` shorthand wipes its own column sizes, so every
   table auto-sizes differently. Pin them so all tables line up. */
@media (min-width: 600px) {
	.ar-page-body #cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose { grid-template-columns: minmax(160px, 1fr) 150px minmax(0, 2.4fr); }
}
.ar-page-body #cmplz-document .cookies-per-purpose div {
	background: var(--surface-3); padding: 12px 14px;
	font-size: 13.5px; line-height: 1.5; color: var(--text-3);
}
.ar-page-body #cmplz-document .cookies-per-purpose .purpose { background: rgba(255, 255, 255, .05); }
.ar-page-body #cmplz-document .cookies-per-purpose .purpose h4 { margin: 0; font-size: 12.5px; color: var(--text); }
.ar-page-body #cmplz-document .cookies-per-purpose .name-header,
.ar-page-body #cmplz-document .cookies-per-purpose .retention-header,
.ar-page-body #cmplz-document .cookies-per-purpose .function-header { background: rgba(255, 255, 255, .028); }
.ar-page-body #cmplz-document .cookies-per-purpose h5 {
	margin: 0; font-size: 10px; font-weight: 700;
	letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.ar-page-body #cmplz-document .cookies-per-purpose .name { color: var(--text); font-variant-ligatures: none; }

/* Consent categories widget (section 7.1).
   The plugin styles these through a 4-level id chain, so the overrides repeat
   that chain and add .ar-page-body on top to win on specificity. */
.ar-page-body #cmplz-manage-consent-container.cmplz-manage-consent-container { --cmplz_category_header_always_active_color: var(--muted); }
.ar-page-body #cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category {
	background: var(--surface-2); border: 1px solid var(--line-10);
	border-radius: var(--r-sm); overflow: hidden; margin-bottom: 8px;
}
.ar-page-body #cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header {
	background: rgba(255, 255, 255, .04); padding: 13px 16px; color: var(--text-3);
}
.ar-page-body #cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-title {
	font-weight: 600; font-size: 15px; color: var(--text);
}
.ar-page-body #cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-always-active { font-size: 12.5px; }
.ar-page-body #cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-toggle { color: var(--muted); }
.ar-page-body #cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-toggle svg { fill: currentColor; }
.ar-page-body #cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-description {
	padding: 14px 16px; font-size: 13.5px; line-height: 1.6; color: var(--text-3);
}
/* Opt-in checkbox: the plugin ships a native box, which stays white on dark. */
.ar-page-body #cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-consent-checkbox {
	appearance: none; -webkit-appearance: none;
	width: 19px; height: 19px; margin: 0; border-radius: 5px;
	border: 1px solid var(--line-18); background: rgba(255, 255, 255, .06);
	cursor: pointer; transition: background .2s, border-color .2s;
}
.ar-page-body #cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-consent-checkbox:hover { border-color: var(--acc-line-strong); }
.ar-page-body #cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-consent-checkbox:checked {
	border-color: var(--accent);
	background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23062028' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.ar-404 { padding: clamp(64px, 12vh, 140px) var(--gut); text-align: center; }
.ar-404__code {
	font-family: var(--font-display); font-weight: 800; font-size: clamp(80px, 16vw, 160px);
	line-height: 1; background: linear-gradient(180deg, #fff 20%, var(--accent));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.ar-404__title { font-size: clamp(24px, 3vw, 34px); margin: 10px 0 12px; }
.ar-404__text { color: var(--text-3); margin-bottom: 28px; }
.ar-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* 7. Animations, reveal, responsive
--------------------------------------------------- */
@keyframes arFade { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes arZoom { from { transform: scale(1.02); } to { transform: scale(1.12); } }
@keyframes arPulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes arScroll { 0% { transform: translate(-50%, 0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translate(-50%, 16px); opacity: 0; } }

.ar-anim { animation: arFade .8s both; }
.ar-anim--1 { animation-delay: .05s; }
.ar-anim--2 { animation-delay: .15s; }
.ar-anim--3 { animation-delay: .28s; }
.ar-anim--4 { animation-delay: .4s; }

/* Scroll reveal (JS adds .is-shown; no-JS pages stay visible). */
html.js [data-reveal] {
	opacity: 0; transform: translateY(28px);
	transition: opacity .75s cubic-bezier(.2, .7, .2, 1), transform .75s cubic-bezier(.2, .7, .2, 1);
}
html.js [data-reveal].is-shown { opacity: 1; transform: none; }

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

/* Responsive */
@media (max-width: 960px) {
	.ar-nav { display: none; }
	.ar-burger { display: inline-flex; }
	.ar-topbar__mid { display: none; }
	:root { --header-h: 69px; }
	.ar-product-content__grid { grid-template-columns: 1fr; }
	.ar-product-aside { position: static; }
}

@media (max-width: 782px) {
	.admin-bar .ar-header { top: 46px; }
	.admin-bar .ar-mobile-nav { top: calc(var(--header-h) + 46px); }
}

/* Below 600px WP's admin bar is position:absolute and scrolls away, so the
   sticky header must not keep reserving 46px for it. */
@media (max-width: 600px) {
	.admin-bar .ar-header { top: 0; }
	.admin-bar .ar-mobile-nav { top: var(--header-h); }
}

/* Background must not scroll while the mobile menu is open. */
body.ar-menu-open { overflow: hidden; }

@media (max-width: 640px) {
	.ar-form__grid { grid-template-columns: 1fr; }
	.ar-field--wide, .ar-form__submit { grid-column: auto; }
	.ar-hero__scroll { display: none; }

	/* Topbar on one line: smaller type + tight padding so the full message and
	   phone fit on a normal phone. The message is a block (not flex) so it can
	   ellipsise on very narrow screens instead of pushing the phone off-screen. */
	.ar-topbar {
		flex-wrap: nowrap; gap: 7px;
		padding-inline: 12px; font-size: 10.5px; white-space: nowrap;
	}
	/* flex-basis 0 (not auto) is what actually lets it shrink below its text. */
	.ar-topbar__item {
		display: block; flex: 1 1 0; min-width: 0;
		overflow: hidden; text-overflow: ellipsis;
	}
	.ar-topbar__dot {
		display: inline-block; width: 5px; height: 5px;
		margin-right: 5px; vertical-align: middle;
	}
	.ar-topbar__sep, .ar-topbar__phone { flex: none; }

	/* Shorter hero + copy lifted off the bottom edge. */
	.ar-hero { min-height: 630px; }
	.ar-hero__content { padding-bottom: clamp(60px, 9vh, 96px); }

	/* One product per line — wrapped chips read as a jumble on a phone. */
	.ar-others { flex-direction: column; align-items: stretch; gap: 8px; }
	.ar-other-chip { justify-content: flex-start; }

	/* Keep the two CTAs side by side instead of stacking. */
	.ar-offer-cta__actions { flex-wrap: nowrap; gap: 8px; }
	.ar-offer-cta__actions .ar-btn { flex: 1 1 0; min-width: 0; justify-content: center; padding: 13px 12px; font-size: 13px; }

	.ar-gallery-filter { padding-top: 14px; }

	/* Keep the quote CTA on mobile: tighter header, compact button, smaller mark
	   so logo + CTA + burger stay on one row. */
	.ar-header { gap: 10px; padding-inline: 14px; }
	.ar-header__left { gap: 12px; }
	.ar-header__right { gap: 8px; }
	.ar-logo__svg { height: 36px; }
	.ar-header__right .ar-btn--cta {
		padding: 9px 13px; font-size: 12px; white-space: nowrap;
	}
	.ar-burger { width: 40px; height: 40px; }
	.ar-quote-band__actions { justify-content: flex-start; }
	.ar-milestone { border-right: 0; border-bottom: 1px solid var(--line-08); }
	.ar-milestone:last-child { border-bottom: 0; }

	/* The 260px measure only makes sense next to the other footer columns;
	   stacked on a phone it just leaves a ragged gap on the right. */
	.ar-footer__about { max-width: none; }

	/* Bottom bar stacks, so centre it — left-aligned rows of different widths
	   read as misaligned once they are on top of each other. */
	.ar-footer__bottom {
		flex-direction: column; align-items: center;
		gap: 12px; text-align: center; line-height: 1.9;
	}
}
