/* ================================================================
   NV PLAST v3 — "Precision Industrial"
   Dark hero, sharp edges, technical typography, bold red accent.
   ================================================================ */

:root {
    --red: #e30613;
    --red-hover: #ff1a2a;
    --red-dark: #b8050f;
    --red-glow: rgba(227, 6, 19, 0.1);

    --dark: #0b0b0d;
    --dark-2: #141416;
    --dark-3: #1c1c1e;
    --dark-border: rgba(255, 255, 255, 0.08);
    --dark-border-2: rgba(255, 255, 255, 0.15);
    --dark-text: #f5f5f7;
    --dark-muted: #86868b;
    --dark-muted-2: #a7a7ad; /* lighter muted — passes AA comfortably on --dark for body copy */

    --white: #ffffff;
    --light: #f5f5f7;
    --border: #e5e5ea;
    --border-2: #d1d1d6;
    --text: #1d1d1f;
    --text-2: #6e6e73;
    --text-3: #aeaeb2;

    --f-head: 'Space Grotesk', system-ui, sans-serif;
    --f-body: 'Inter', system-ui, sans-serif;
    --f-mono: 'JetBrains Mono', monospace;

    --max-w: 1200px;
    --gutter: 40px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-morph: cubic-bezier(0.22, 1, 0.36, 1);
    --fast: 150ms;
    --med: 300ms;
    --slow: 600ms;
    --skew: -10deg;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
/* Single-page section anchors (Početna / O nama / Kontakt) — offset the fixed navbar */
.anchor {
    scroll-margin-top: 88px;
}
body {
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}
ul {
    list-style: none;
}
input,
select,
textarea {
    font: inherit;
    color: inherit;
}
:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}
p {
    max-width: 64ch;
    text-wrap: pretty;
}
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--text);
    color: var(--white);
    padding: 12px 24px;
    font-weight: 600;
}
.skip-link:focus {
    left: 0;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── Typography ── */
.display-xl {
    font-family: var(--f-head);
    font-weight: 700;
    font-size: clamp(2.75rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}
.display-l {
    font-family: var(--f-head);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}
.heading-l {
    font-family: var(--f-head);
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.heading-m {
    font-family: var(--f-head);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.heading-s {
    font-family: var(--f-head);
    font-weight: 500;
    font-size: 1.0625rem;
    line-height: 1.4;
}
.body-l {
    font-size: 1.125rem;
    line-height: 1.65;
}
.body-s {
    font-size: 0.875rem;
    line-height: 1.55;
}
.mono-data {
    font-family: var(--f-mono);
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.mono-label {
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.3;
}
.accent {
    color: var(--red);
}
.muted {
    color: var(--text-2);
}

/* ── Layout ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.section {
    padding: 96px 0;
}
.section--paper {
    background: var(--light);
}
.section--dark {
    background: var(--dark);
    color: var(--dark-text);
}
.section--tight {
    padding: 64px 0;
}
@media (max-width: 1023px) {
    .section {
        padding: 64px 0;
    }
    .section--tight {
        padding: 48px 0;
    }
    .container {
        padding: 0 24px;
    }
}
@media (max-width: 767px) {
    .section {
        padding: 48px 0;
    }
    .container {
        padding: 0 20px;
    }
}

/* ── Slat Divider ── */
.slat-divider {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 48px;
}
.slat-divider span {
    height: 3px;
    background: var(--red);
    transform: skewX(var(--skew));
    transform-origin: left;
}
.slat-divider span:nth-child(1) {
    width: 100%;
}
.slat-divider span:nth-child(2) {
    width: 80%;
}
.slat-divider span:nth-child(3) {
    width: 60%;
}
.slat-divider span:nth-child(4) {
    width: 40%;
}
.slat-divider--white span {
    background: white;
}

/* ── Section Headers ── */
.sec-head {
    margin-bottom: 48px;
}
.sec-head__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.sec-head__meta .idx {
    color: var(--red);
}
.sec-head__meta .eyebrow {
    color: var(--text-2);
}
.sec-head__meta .rule {
    flex: 1;
    height: 1px;
    background: var(--border);
}
.sec-head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.sec-head--row > div {
    flex: 1;
    min-width: 260px;
}
.sec-head--dark .sec-head__meta .rule {
    background: var(--dark-border-2);
}
.sec-head--dark .sec-head__meta .eyebrow {
    color: var(--dark-muted);
}
@media (max-width: 767px) {
    .sec-head {
        margin-bottom: 32px;
    }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    transition: all var(--fast) var(--ease-io);
}
.btn .arr {
    font-family: var(--f-head);
    font-weight: 500;
    font-size: 1rem;
    transition: transform var(--fast) var(--ease);
}
.btn:hover .arr {
    transform: translateX(4px);
}
.btn--primary {
    background: var(--red);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--red-hover);
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.3);
}
.btn--ghost {
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
}
.btn--ghost:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}
.btn--ghost-inv {
    border: 1px solid var(--dark-border-2);
    color: var(--dark-text);
    background: transparent;
}
.btn--ghost-inv:hover {
    background: var(--white);
    color: var(--text);
    border-color: var(--white);
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
    border-bottom: 2px solid var(--red);
    padding: 4px 0;
    transition: color var(--fast);
}
.link-arrow .arr {
    color: var(--red);
    transition: transform var(--fast) var(--ease);
}
.link-arrow:hover {
    color: var(--red);
}
.link-arrow:hover .arr {
    transform: translateX(4px);
}
.badge {
    display: inline-block;
    border: 1px solid var(--border);
    color: var(--text-2);
    padding: 5px 10px;
    background: var(--white);
    font-size: 0.6875rem;
    font-family: var(--f-mono);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.email-link {
    overflow-wrap: anywhere;
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.06),
        0 12px 40px rgba(0, 0, 0, 0.05);
    transition:
        background var(--med) var(--ease-io),
        box-shadow var(--med);
}
/* --p (0 at top → 1 collapsed) is scrubbed from scroll position in global.js, so
   the height + logo scale track the scroll continuously instead of snapping. */
.navbar {
    --p: 0;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(120px - 56px * var(--p));
}
/* When over a dark hero, navbar goes transparent */
.navbar.over-hero:not(.scrolled) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}
/* Oversized logo at the top of the page that morphs down to compact on scroll */
.nav-logo {
    display: inline-flex;
    transform-origin: left center;
    transform: scale(calc(1.9 - 0.9 * var(--p)));
}
.nav-logo img {
    height: 52px;
    width: auto;
}
.nav-logo__dark {
    display: none;
}
/* Over the dark hero the navbar is transparent — show the light-on-dark logo */
.navbar.over-hero:not(.scrolled) .nav-logo__light {
    display: none;
}
.navbar.over-hero:not(.scrolled) .nav-logo__dark {
    display: inline-block;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    position: relative;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    padding: 8px 0;
    transition: color var(--fast);
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
    transform: skewX(var(--skew)) scaleX(0);
    transform-origin: left;
    transition: transform 200ms var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current='page']::after {
    transform: skewX(var(--skew)) scaleX(1);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}
.lang-switch {
    display: flex;
    gap: 6px;
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
}
.lang-switch .on {
    color: var(--text);
}
.lang-switch .off {
    color: var(--text-3);
}
.navbar .btn {
    min-height: 40px;
    padding: 10px 20px;
}
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: background var(--med);
}

/* Navbar dark mode (only when over a dark hero and not scrolled) */
.navbar.over-hero:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.75);
}
.navbar.over-hero:not(.scrolled) .nav-links a:hover,
.navbar.over-hero:not(.scrolled) .nav-links a[aria-current='page'] {
    color: var(--white);
}
.navbar.over-hero:not(.scrolled) .lang-switch .on {
    color: var(--white);
}
.navbar.over-hero:not(.scrolled) .lang-switch .off {
    color: rgba(255, 255, 255, 0.35);
}
.navbar.over-hero:not(.scrolled) .nav-burger span {
    background: var(--white);
}

/* ── Navbar dropdown (Proizvodi → kategorije) ── */
.nav-dd {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-dd > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-dd__caret {
    font-size: 0.65em;
    line-height: 1;
    transition: transform var(--fast) var(--ease);
}
.nav-dd[data-open] .nav-dd__caret {
    transform: rotate(180deg);
}
.nav-dd__menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 248px;
    padding: 8px;
    margin-top: 12px;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.14),
        0 2px 8px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--fast) var(--ease),
        transform var(--fast) var(--ease),
        visibility var(--fast);
    z-index: 110;
}
/* hover-bridge spanning the 12px gap between the trigger and the menu so the
   cursor keeps :hover while travelling. It MUST live on .nav-dd, not on
   .nav-dd__menu — the menu's overflow-y:auto establishes a clip box that would
   swallow any pseudo placed above it, leaving the gap bare. */
.nav-dd:hover::after,
.nav-dd:focus-within::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    max-width: 80vw;
    height: 16px;
}
.nav-dd:hover .nav-dd__menu,
.nav-dd:focus-within .nav-dd__menu,
.nav-dd[data-open] .nav-dd__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.nav-dd__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    transition:
        background var(--fast),
        color var(--fast);
}
.nav-dd__item::after {
    display: none;
}
.nav-dd__item:hover,
.nav-dd__item:focus-visible {
    background: var(--red-glow);
    color: var(--red);
    outline: none;
}
.nav-dd__item .cnt {
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    color: var(--text-3);
}
.nav-dd__item:hover .cnt,
.nav-dd__item:focus-visible .cnt {
    color: var(--red);
}
.nav-dd__item--all {
    font-weight: 600;
}
.nav-dd__item--soon {
    color: var(--text-3);
    cursor: default;
    pointer-events: none;
}
.nav-dd__item--soon .badge {
    font-family: var(--f-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1px 6px;
}
.nav-dd__sep {
    height: 1px;
    background: var(--border);
    margin: 6px 4px;
}
/* dropdown stays light even when navbar is over a dark hero */
.navbar.over-hero:not(.scrolled) .nav-dd__menu .nav-dd__item {
    color: var(--text);
}
.navbar.over-hero:not(.scrolled) .nav-dd__menu .nav-dd__item:hover,
.navbar.over-hero:not(.scrolled) .nav-dd__menu .nav-dd__item:focus-visible {
    color: var(--red);
}

/* ── Mobile drawer accordion (Proizvodi) ── */
.drawer__acc {
    width: 100%;
    text-align: left;
    font-family: var(--f-head);
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    padding: 16px 0;
    border-bottom: 1px solid var(--dark-border);
    color: var(--dark-text);
    display: flex;
    align-items: baseline;
    gap: 14px;
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity var(--med) var(--ease),
        transform var(--med) var(--ease),
        color var(--fast);
}
.drawer.open .drawer__acc {
    opacity: 1;
    transform: none;
    transition-delay: 160ms;
}
.drawer__acc .no {
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    color: var(--dark-muted);
}
.drawer__acc[aria-current='page'] {
    color: var(--red);
}
.drawer__acc .drawer__acc-lbl {
    margin-right: auto;
}
.drawer__chev {
    align-self: center;
    width: 11px;
    height: 11px;
    border-right: 2px solid var(--dark-muted);
    border-bottom: 2px solid var(--dark-muted);
    transform: rotate(45deg) translate(-2px, -2px);
    transition:
        transform var(--med) var(--ease),
        border-color var(--fast);
}
.drawer__acc[aria-expanded='true'] .drawer__chev {
    transform: rotate(-135deg);
    border-color: var(--red);
}

/* ── Mobile drawer category sub-list ── */
.drawer__nav .drawer__sub {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 18px;
    max-height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height var(--med) var(--ease),
        opacity var(--med) var(--ease),
        margin var(--med) var(--ease);
}
.drawer__nav .drawer__sub.open {
    opacity: 1;
    margin: 2px 0 10px;
}
.drawer__nav .drawer__sub::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(var(--red), transparent 90%);
    opacity: 0.55;
}
.drawer__nav .drawer__sub a,
.drawer__nav .drawer__sub-soon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.3;
    letter-spacing: 0.03em;
    color: var(--dark-muted);
    padding: 13px 4px 13px 0;
    margin: 0;
    border-bottom: 1px solid var(--dark-border);
    opacity: 1;
    transform: none;
    transition:
        color var(--fast) var(--ease),
        padding-left var(--fast) var(--ease);
}
.drawer__nav .drawer__sub a:last-of-type {
    border-bottom: 0;
}
.drawer__nav .drawer__sub a.drawer__sub-all {
    color: var(--dark-text);
}
.drawer__nav .drawer__sub a.drawer__sub-all .cnt {
    opacity: 1;
}
.drawer__nav .drawer__sub a .cnt,
.drawer__nav .drawer__sub-soon .badge {
    flex: none;
}
.drawer__nav .drawer__sub a .cnt {
    font-size: 0.6875rem;
    color: var(--dark-muted);
    opacity: 0.7;
    transition: color var(--fast);
}
.drawer__nav .drawer__sub a:hover,
.drawer__nav .drawer__sub a:focus-visible {
    color: var(--dark-text);
    padding-left: 6px;
    outline: none;
}
.drawer__nav .drawer__sub a:hover .cnt,
.drawer__nav .drawer__sub a:focus-visible .cnt {
    color: var(--red);
    opacity: 1;
}
.drawer__nav .drawer__sub a[aria-current='page'] {
    color: var(--red);
}
.drawer__nav .drawer__sub-soon {
    color: var(--dark-muted);
    opacity: 0.45;
}
.drawer__nav .drawer__sub-soon .badge {
    font-size: 0.5625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    padding: 2px 6px;
}

@media (max-width: 1023px) {
    .nav-links,
    .nav-right .btn {
        display: none;
    }
    .nav-burger {
        display: flex;
    }
    /* gentler logo enlargement on small screens */
    .navbar .container {
        height: calc(92px - 28px * var(--p));
    }
    .nav-logo {
        transform: scale(calc(1.5 - 0.5 * var(--p)));
    }
}

/* ── Mobile Drawer ── */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 150;
    visibility: hidden;
    pointer-events: none;
}
.drawer.open {
    visibility: visible;
    pointer-events: auto;
}
.drawer__scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity var(--med) var(--ease-io);
}
.drawer.open .drawer__scrim {
    opacity: 1;
}
.drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(380px, 90vw);
    background: var(--dark);
    color: var(--dark-text);
    padding: 32px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform var(--med) var(--ease);
}
.drawer.open .drawer__panel {
    transform: translateX(0);
}
.drawer__close {
    align-self: flex-end;
    font-size: 28px;
    line-height: 1;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    color: var(--dark-text);
}
.drawer__nav {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}
.drawer__nav a {
    font-family: var(--f-head);
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    padding: 16px 0;
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    align-items: baseline;
    gap: 14px;
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity var(--med) var(--ease),
        transform var(--med) var(--ease);
}
.drawer__nav a .no {
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    color: var(--dark-muted);
}
.drawer.open .drawer__nav a {
    opacity: 1;
    transform: none;
}
.drawer.open .drawer__nav a:nth-child(1) {
    transition-delay: 40ms;
}
.drawer.open .drawer__nav a:nth-child(2) {
    transition-delay: 80ms;
}
.drawer.open .drawer__nav a:nth-child(3) {
    transition-delay: 120ms;
}
.drawer.open .drawer__nav a:nth-child(4) {
    transition-delay: 160ms;
}
.drawer.open .drawer__nav a:nth-child(5) {
    transition-delay: 200ms;
}
.drawer__nav a[aria-current='page'] {
    color: var(--red);
}
.drawer__cta {
    margin-top: auto;
    padding-top: 24px;
}

/* ── Hero ── */
.hero {
    position: relative;
    overflow: hidden;
}
.hero--home {
    background: var(--dark);
    color: var(--dark-text);
    padding: 160px 0 72px;
    display: flex;
    flex-direction: column;
}
.hero--home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        115deg,
        transparent 0 26px,
        rgba(255, 255, 255, 0.015) 26px 27px
    );
    pointer-events: none;
}
.hero--home .container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 6fr 5fr;
    gap: 64px;
    align-items: center;
    flex: 1;
}
.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.hero__eyebrow .slat-divider {
    width: 40px;
}
.hero__eyebrow .mono-label {
    color: var(--dark-muted);
}
.hero__copy h1 {
    margin-bottom: 24px;
}
.hero__copy .body-l {
    color: var(--dark-muted-2);
    margin-bottom: 40px;
    max-width: 44ch;
}
/* Equal-width CTAs: two matched columns (side by side), stacking on phones —
   both buttons stay the same width at every breakpoint. */
.hero__ctas {
    display: flex;
    gap: 16px;
    max-width: 600px;
}
.hero__ctas .btn {
    flex: 1 1 0;
}
.hero__media {
    position: relative;
    padding: 16px;
}
.hero__tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}
.hero__tiles .tile {
    position: relative;
    background: var(--dark-2);
    border: 1px solid var(--dark-border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    aspect-ratio: 1/1;
}
.hero__tiles .tile--lg {
    grid-row: span 2;
    aspect-ratio: auto;
}
.hero__tiles .tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hero__tiles .tile .tile__code {
    position: absolute;
    top: 10px;
    left: 12px;
    color: var(--dark-muted);
}

/* Ticks (technical corner marks) */
.ticks {
    position: relative;
}
.ticks > i {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 0 solid var(--dark-border-2);
    pointer-events: none;
    z-index: 2;
}
.ticks > i:nth-of-type(1) {
    top: -1px;
    left: -1px;
    border-top-width: 2px;
    border-left-width: 2px;
}
.ticks > i:nth-of-type(2) {
    top: -1px;
    right: -1px;
    border-top-width: 2px;
    border-right-width: 2px;
}
.ticks > i:nth-of-type(3) {
    bottom: -1px;
    left: -1px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}
.ticks > i:nth-of-type(4) {
    bottom: -1px;
    right: -1px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}
.ticks--light > i {
    border-color: var(--border);
}

/* Hero stats bar */
.hero__stats {
    position: relative;
    z-index: 1;
    border-top: 3px solid var(--red);
    margin-top: 64px;
}
.hero__stats .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.hero__stats .stat {
    padding: 40px 32px;
    border-left: 1px solid var(--dark-border);
}
.hero__stats .stat:first-child {
    border-left: none;
    padding-left: 0;
}
.hero__stats .stat__num {
    font-family: var(--f-head);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}
.hero__stats .stat .mono-label {
    color: var(--dark-muted);
    display: block;
}

/* Hero entrance animation */
.hero__copy h1 .h-line {
    display: block;
    overflow: hidden;
}
.hero__copy h1 .h-line-inner {
    display: block;
}
.hero__fade {
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1023px) {
    .hero--home {
        padding: 120px 0 56px;
        min-height: auto;
    }
    .hero--home .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero__stats .container {
        grid-template-columns: 1fr;
    }
    .hero__stats .stat {
        border-left: none;
        border-top: 1px solid var(--dark-border);
        padding: 24px 0;
    }
    .hero__stats .stat:first-child {
        border-top: none;
    }
}
@media (max-width: 767px) {
    .hero--home {
        padding: 100px 0 48px;
    }
    .hero--home .container {
        gap: 36px;
    }
    /* Smaller floor so "u svakom komadu." holds on one line on typical phones
     instead of orphaning the preposition. */
    .hero__copy h1 {
        font-size: clamp(2.4rem, 9vw, 3rem);
    }
    .hero__copy .body-l {
        margin-bottom: 32px;
    }
    .hero__stats {
        margin-top: 40px;
    }
    /* Stack CTAs into one full-width column — still equal widths */
    .hero__ctas {
        flex-direction: column;
        max-width: 360px;
    }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
    background: var(--dark);
    color: var(--dark-text);
    padding: 184px 0 80px;
    border-bottom: 3px solid var(--red);
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        115deg,
        transparent 0 26px,
        rgba(255, 255, 255, 0.015) 26px 27px
    );
    pointer-events: none;
}
.page-hero .container {
    position: relative;
    z-index: 1;
}
.page-hero .hero__eyebrow {
    margin-bottom: 32px;
}
.page-hero h1 {
    margin-bottom: 22px;
}
.page-hero .body-l {
    color: var(--dark-muted);
}
@media (max-width: 767px) {
    .page-hero {
        padding: 124px 0 48px;
    }
}

/* Page-hero entrance: slat bars draw in with the eyebrow reveal.
   Gated on .rv-ready so the bars stay visible if JS never runs. */
.rv-ready .page-hero .hero__eyebrow.rv .slat-divider span {
    transform: skewX(var(--skew)) scaleX(0);
    transform-origin: left;
    transition: transform 500ms var(--ease);
}
.rv-ready .page-hero .hero__eyebrow.rv.in .slat-divider span {
    transform: skewX(var(--skew)) scaleX(1);
}
.rv-ready .page-hero .hero__eyebrow.rv.in .slat-divider span:nth-child(2) {
    transition-delay: 60ms;
}
.rv-ready .page-hero .hero__eyebrow.rv.in .slat-divider span:nth-child(3) {
    transition-delay: 120ms;
}
.rv-ready .page-hero .hero__eyebrow.rv.in .slat-divider span:nth-child(4) {
    transition-delay: 180ms;
}
@media (prefers-reduced-motion: reduce) {
    .rv-ready .page-hero .hero__eyebrow.rv .slat-divider span {
        transform: skewX(var(--skew)) scaleX(1);
    }
}

/* Page-hero parallax: foreground lifts + fades faster than the lagging
   background, for depth. Driven by --hero-p (0 at top → 1, set in global.js).
   Default 0 so there is no flash before/without JS. */
.page-hero {
    --hero-p: 0;
}
.page-hero .container {
    transform: translateY(calc(var(--hero-p) * -40px));
    opacity: calc(1 - var(--hero-p) * 0.85);
    will-change: transform, opacity;
}
.page-hero::before {
    transform: translateY(calc(var(--hero-p) * 28px));
}
@media (prefers-reduced-motion: reduce) {
    .page-hero .container {
        transform: none;
        opacity: 1;
    }
    .page-hero::before {
        transform: none;
    }
}

/* ── Ticker ── */
.ticker {
    background: var(--dark-2);
    border-bottom: 1px solid var(--dark-border);
    overflow: hidden;
    padding: 14px 0;
}
.ticker__track {
    display: flex;
    width: max-content;
    animation: tickerMove 40s linear infinite;
}
.ticker__group {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.ticker__group span {
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dark-muted);
    padding: 0 24px;
    position: relative;
}
.ticker__group span::after {
    content: '/';
    position: absolute;
    right: -4px;
    color: var(--red);
}
@keyframes tickerMove {
    to {
        transform: translateX(-50%);
    }
}

/* ── Service Cards ── */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1023px) {
    .cards-3 {
        gap: 20px;
    }
}
@media (max-width: 767px) {
    .cards-3 {
        grid-template-columns: 1fr;
    }
}

.scard {
    position: relative;
    border: 1px solid var(--border);
    padding: 32px 28px;
    transition:
        border-color var(--med) var(--ease),
        background var(--med);
}
.scard::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--med) var(--ease);
}
.scard:hover::before {
    transform: scaleX(1);
}
.scard:hover {
    border-color: var(--border-2);
    background: var(--light);
}
.scard__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
}
.scard__idx {
    color: var(--red);
}
.scard__icon {
    width: 28px;
    height: 28px;
    color: var(--text-2);
    transition: color var(--med);
}
.scard:hover .scard__icon {
    color: var(--red);
}
.scard__icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.25;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.scard h3 {
    margin-bottom: 12px;
}
.scard p {
    color: var(--text-2);
    font-size: 0.9375rem;
}

/* ── Product Cards ── */
.pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1023px) {
    .pgrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 767px) {
    .pgrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}
@media (max-width: 400px) {
    .pgrid {
        grid-template-columns: 1fr;
    }
}
.pgrid--4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1023px) {
    .pgrid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pcard {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition:
        border-color var(--med),
        box-shadow var(--med),
        transform var(--med) var(--ease);
}
.pcard:hover {
    border-color: var(--text);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.pcard__img {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--light);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.pcard__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--med) var(--ease);
}
.pcard:hover .pcard__img img {
    transform: scale(1.06);
}
.pcard__code {
    position: absolute;
    top: 12px;
    left: 14px;
    color: var(--text-2);
}
.pcard__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 22px 22px;
}
.pcard__cat {
    color: var(--text-2);
    margin-bottom: 8px;
}
.pcard__body h3 {
    margin-bottom: 6px;
}
@media (max-width: 767px) {
    .pcard__body {
        padding: 14px 16px 16px;
    }
}

/* Image placeholder */
.img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--light);
}
.img-ph::after {
    content: attr(data-ph);
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--text-3);
    text-transform: uppercase;
    text-align: center;
    padding: 8px 12px;
    border: 1px solid var(--border-2);
}

/* ── CTA Banner ── */
.cta-banner {
    background: var(--dark);
    color: var(--dark-text);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        115deg,
        transparent 0 26px,
        rgba(255, 255, 255, 0.015) 26px 27px
    );
    pointer-events: none;
}
.cta-banner .container {
    padding-top: 96px;
    padding-bottom: 96px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-banner .mono-label {
    color: var(--red);
    display: block;
    margin-bottom: 20px;
}
.cta-banner h2 {
    margin-bottom: 20px;
}
.cta-banner p {
    opacity: 0.55;
    max-width: 48ch;
    margin-bottom: 32px;
}
@media (max-width: 1023px) {
    .cta-banner .container {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

/* ── Quote Band ── */
.quote-band {
    background: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.quote-band .container {
    padding-top: 80px;
    padding-bottom: 80px;
}
.quote-band blockquote {
    font-family: var(--f-head);
    font-weight: 500;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.45;
    letter-spacing: -0.01em;
    max-width: 30em;
    position: relative;
    padding-left: 32px;
}
.quote-band blockquote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    height: calc(100% - 8px);
    width: 4px;
    background: var(--red);
    transform: skewX(var(--skew));
}
@media (max-width: 767px) {
    .quote-band .container {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .quote-band blockquote {
        padding-left: 24px;
    }
}

/* ── Product spec sheet ── */
/* Materijal: the hero fact of the info column */
.pd-mat {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}
.pd-mat__k {
    display: block;
    color: var(--text-2);
    margin-bottom: 9px;
}
.pd-mat__v {
    font-family: var(--f-head);
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--text);
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 12px;
}
.pd-mat__v small {
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 0.8125rem;
    letter-spacing: 0;
    color: var(--text-2);
}

/* Remaining specs: open hairline definition list */
.pd-rows {
    margin: 0;
}
.pd-row {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 16px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}
.pd-row:last-child {
    border-bottom: 0;
}
.pd-row__k {
    color: var(--text-2);
}
.pd-row__v {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text);
}

/* Dostupne boje: colour swatches */
.pd-sw {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}
.pd-sw__dot {
    width: 20px;
    height: 20px;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.14);
}
.pd-sw__cnt {
    color: var(--text-3);
    margin-left: 3px;
}
@media (max-width: 520px) {
    .pd-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 13px 0;
    }
}

/* ── Catalog ── */
.catalog {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}
.cat-side {
    position: sticky;
    top: 88px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.cat-side::-webkit-scrollbar {
    width: 4px;
}
.cat-side::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}
@media (max-width: 1023px) {
    .catalog {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.f-group {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.f-group > h4,
.f-group > label.f-label {
    display: block;
    color: var(--text-2);
    margin-bottom: 12px;
}
.f-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 4px;
    cursor: pointer;
    font-size: 0.9375rem;
    border-radius: 4px;
    transition: background 0.15s ease;
}
.f-check:hover {
    background: rgba(0, 0, 0, 0.03);
}
.f-check--soon {
    cursor: default;
    color: var(--text-2);
}
.f-check--soon .badge {
    margin-left: auto;
}
.f-check input {
    width: 17px;
    height: 17px;
    accent-color: var(--red);
    cursor: pointer;
}
.f-check .cnt {
    margin-left: auto;
    color: var(--text-2);
    font-family: var(--f-mono);
    font-size: 0.75rem;
}
.f-search {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    background: var(--white);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.f-search:focus {
    border-color: var(--text);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}
.swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.swatch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    border: 1px solid var(--border);
    padding: 10px 14px;
    font-size: 0.8125rem;
    background: var(--white);
    transition:
        border-color var(--fast),
        background var(--fast);
    cursor: pointer;
}
.swatch .dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid var(--border);
}
.swatch[aria-pressed='true'] {
    border-color: var(--red);
    background: var(--red-glow);
}
.f-reset {
    color: var(--red);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 0;
    transition: opacity 0.15s ease;
}
.f-reset:hover {
    text-decoration: underline;
    opacity: 0.8;
}
.cat-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.cat-count {
    font-family: var(--f-mono);
    font-size: 0.8125rem;
    color: var(--text-2);
    transition: opacity var(--fast);
}
.cat-count strong {
    color: var(--text);
}
.cat-count.tick {
    opacity: 0;
}
.f-open-btn {
    display: none;
}
@media (max-width: 1023px) {
    .cat-side {
        display: none;
    }
    .f-open-btn {
        display: inline-flex;
    }
}
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-glow);
    color: var(--red);
    border: 1px solid currentColor;
    padding: 6px 10px;
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.chip::after {
    content: '';
    position: absolute;
    inset: -8px 0;
}
.chip .x {
    font-size: 14px;
    line-height: 1;
}
.empty-state {
    text-align: center;
    padding: 64px 24px;
    border: 1px dashed var(--border);
}
.empty-state p {
    margin: 0 auto 20px;
    color: var(--text-2);
}

/* ── Filter Sheet (mobile) ── */
.fsheet {
    position: fixed;
    inset: 0;
    z-index: 150;
    visibility: hidden;
    pointer-events: none;
}
.fsheet.open {
    visibility: visible;
    pointer-events: auto;
}
.fsheet__scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity var(--med);
}
.fsheet.open .fsheet__scrim {
    opacity: 1;
}
.fsheet__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 82vh;
    background: var(--white);
    border-radius: 12px 12px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform var(--med) var(--ease);
}
.fsheet.open .fsheet__panel {
    transform: translateY(0);
}
.fsheet__handle {
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin: 12px auto 4px;
}
.fsheet__body {
    overflow-y: auto;
    padding: 12px 24px;
}
.fsheet__confirm {
    position: sticky;
    bottom: 0;
    padding: 12px 24px;
    background: var(--white);
    border-top: 1px solid var(--border);
}
.fsheet__confirm .btn {
    width: 100%;
}

/* ── Floating filter pill (mobile quick access) ── */
.f-fab {
    display: none;
}
@media (max-width: 1023px) {
    .f-fab {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        position: fixed;
        left: 50%;
        bottom: calc(20px + env(safe-area-inset-bottom));
        z-index: 140;
        padding: 14px 22px;
        min-height: 52px;
        border: none;
        cursor: pointer;
        background: var(--red);
        color: var(--white);
        border-radius: 100px;
        font-family: var(--f-mono);
        font-weight: 600;
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        line-height: 1;
        white-space: nowrap;
        box-shadow:
            0 8px 28px rgba(0, 0, 0, 0.28),
            0 2px 10px rgba(227, 6, 19, 0.4);
        transform: translate(-50%, 160%);
        opacity: 0;
        pointer-events: none;
        transition:
            transform var(--med) var(--ease),
            opacity var(--med) var(--ease);
    }
    .f-fab.is-visible {
        transform: translate(-50%, 0);
        opacity: 1;
        pointer-events: auto;
    }
    .f-fab:active {
        transform: translate(-50%, 0) scale(0.96);
    }
    .f-fab__ico {
        width: 18px;
        height: 18px;
        flex: none;
    }
    .f-fab__badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        margin-left: 2px;
        background: var(--white);
        color: var(--red);
        border-radius: 100px;
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0;
    }
    .f-fab__badge[hidden] {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    .f-fab {
        transition: opacity var(--med) ease;
    }
}

/* ── Product Detail ── */
/* Sits under the compact (nav-static) navbar on the product page: ~64px bar
   + ~40px breathing room. */
.pd-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 104px 0 40px;
    color: var(--text-2);
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color var(--fast);
}
@media (max-width: 767px) {
    .pd-back {
        margin: 88px 0 32px;
    }
}
.pd-back:hover {
    color: var(--text);
}
.pd-back__arr {
    font-size: 0.875rem;
    line-height: 1;
    transition: transform var(--fast) var(--ease);
}
.pd-back:hover .pd-back__arr {
    transform: translateX(-4px);
}
.pdetail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 1023px) {
    .pdetail {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* Anchor the gallery while the longer info column is read. */
.pd-gallery {
    position: sticky;
    top: 96px;
}
@media (max-width: 1023px) {
    .pd-gallery {
        position: static;
    }
}
.pd-gallery__main {
    aspect-ratio: 1/1;
    background: var(--light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    overflow: hidden;
}
.pd-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pd-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.pd-thumb {
    width: 72px;
    height: 72px;
    background: var(--light);
    border: 1px solid var(--border);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color var(--fast);
    cursor: pointer;
}
.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pd-thumb[aria-pressed='true'] {
    border-color: var(--red);
}
.pd-eyebrow {
    display: block;
    color: var(--text-2);
    margin-bottom: 16px;
}
.pd-title {
    font-family: var(--f-head);
    font-weight: 700;
    font-size: clamp(1.9rem, 3.2vw, 2.375rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 18px;
}
/* SKU as a small technical chip: the product's identity, shown once. */
.pd-sku {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-2);
    padding: 5px 10px;
    margin-bottom: 26px;
}
.pd-sku__k {
    color: var(--text-3);
    font-size: 0.625rem;
}
.pd-sku__v {
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--text);
}
.pd-desc {
    font-size: 1rem;
    line-height: 1.62;
    color: #48484c;
    max-width: 46ch;
    margin-bottom: 34px;
}
.pd-desc > :first-child {
    margin-top: 0;
}
.pd-desc > :last-child {
    margin-bottom: 0;
}
.pd-desc p {
    margin: 0 0 16px;
}
.pd-desc h2,
.pd-desc h3 {
    color: var(--text);
    margin: 24px 0 12px;
    line-height: 1.3;
}
.pd-desc ul,
.pd-desc ol {
    margin: 0 0 16px;
    padding-left: 22px;
}
.pd-desc ul {
    list-style: disc;
}
.pd-desc ol {
    list-style: decimal;
}
.pd-desc li {
    margin-bottom: 6px;
}
.pd-desc a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.pd-cta {
    display: flex;
    width: fit-content;
    margin-top: 34px;
}

/* ── Timeline ── */
.timeline {
    position: relative;
    max-width: 760px;
}
.timeline__svg {
    position: absolute;
    left: 23px;
    top: 24px;
    height: calc(100% - 48px);
    width: 2px;
    overflow: visible;
}
.timeline__svg line {
    stroke: var(--red);
    stroke-width: 2;
    transition: stroke-dashoffset var(--slow) var(--ease);
}
.tl-step {
    position: relative;
    padding: 0 0 48px 88px;
}
.tl-step:last-child {
    padding-bottom: 0;
}
.tl-step__num {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-weight: 500;
}
.tl-step h3 {
    margin-bottom: 10px;
}
.tl-step p {
    color: var(--text-2);
}
.mat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.mat-chips span {
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: 0.9375rem;
    border: 1px solid var(--border);
    padding: 12px 22px;
    background: var(--white);
    transition:
        background var(--fast),
        color var(--fast),
        border-color var(--fast);
}
.mat-chips span:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

/* ── Contact ── */

/* Kontakt — single unified dark section */
.kt {
    background: var(--dark);
    color: var(--dark-text);
    position: relative;
    overflow: hidden;
    padding: 140px 0 96px;
}
.kt__bg-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        115deg,
        transparent 0 26px,
        rgba(255, 255, 255, 0.015) 26px 27px
    );
    pointer-events: none;
}
.kt .container {
    position: relative;
    z-index: 1;
}

/* Asymmetric 2-col grid */
.kt__grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
}
@media (max-width: 1023px) {
    .kt__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

/* Left: info column */
.kt__info {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.kt__head h1 {
    max-width: 14ch;
}

/* Contact details — typographic stack, tight */
.kt__details {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.kt__detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 0;
    border-top: 1px solid var(--dark-border);
    text-decoration: none;
    color: var(--dark-text);
    transition: color var(--fast);
}
.kt__detail:last-child {
    border-bottom: 1px solid var(--dark-border);
}
a.kt__detail:hover {
    color: var(--red);
}
a.kt__detail:hover .kt__detail-value {
    color: var(--red);
}
.kt__detail-label {
    color: var(--dark-muted);
    font-size: 0.6875rem;
}
.kt__detail-value {
    font-family: var(--f-head);
    font-weight: 500;
    font-size: 1.0625rem;
    line-height: 1.4;
    transition: color var(--fast);
}
.kt__detail-note {
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-muted);
}

/* Micro trust line */
.kt__micro-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    color: var(--dark-muted);
    line-height: 1.6;
}
.kt__micro-sep {
    color: var(--red);
    opacity: 0.5;
}

/* Mini map */
.kt__mini-map {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--dark-2);
    border: 1px solid var(--dark-border-2);
    overflow: hidden;
}
.kt__mini-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.8) contrast(1.1) brightness(0.65);
    transition: filter var(--slow);
}
.kt__mini-map:hover iframe {
    filter: grayscale(0.3) contrast(1.05) brightness(0.8);
}
.kt__mini-map-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 2;
}
.kt__mini-map-ph svg {
    stroke: var(--red);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.5;
    flex-shrink: 0;
}
.kt__mini-map-ph span {
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    color: var(--dark-muted);
}
.kt__mini-map-ph.hidden {
    display: none;
}
.kt__map-btn {
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    padding: 6px 12px;
    border: 1px solid var(--dark-border-2);
    background: transparent;
    transition:
        background var(--fast),
        border-color var(--fast);
}
.kt__map-btn:hover {
    background: rgba(227, 6, 19, 0.08);
    border-color: var(--red);
}

/* Right: form column */
.kt__form-col {
    position: relative;
}
.kt__form {
    background: var(--dark-2);
    border: 1px solid var(--dark-border-2);
    padding: 40px 36px;
}
@media (max-width: 600px) {
    .kt__form {
        padding: 28px 20px;
    }
}

/* Dark form fields */
.kt__form .form-field label {
    color: var(--dark-muted);
}
.kt__form .form-field:focus-within label {
    color: var(--dark-text);
}
.kt__form .form-field input,
.kt__form .form-field select,
.kt__form .form-field textarea {
    background: var(--dark-3);
    border-color: var(--dark-border-2);
    color: var(--dark-text);
}
.kt__form .form-field input:hover,
.kt__form .form-field select:hover,
.kt__form .form-field textarea:hover {
    border-color: rgba(255, 255, 255, 0.25);
}
.kt__form .form-field input:focus,
.kt__form .form-field select:focus,
.kt__form .form-field textarea:focus {
    border-color: var(--red);
}
.kt__form .form-field input::placeholder,
.kt__form .form-field textarea::placeholder {
    color: var(--dark-muted);
}
.kt__form .form-field select option {
    background: var(--dark-2);
    color: var(--dark-text);
}

/* Success state in dark context */
.kt__form-col .form-success {
    background: var(--dark-2);
    border-color: #16a34a;
    color: var(--dark-text);
}

@media (max-width: 767px) {
    .kt {
        padding: 100px 0 64px;
    }
}
.form-field {
    margin-bottom: 24px;
}
.form-field label {
    display: block;
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 10px;
    transition: color var(--fast);
}
.form-field:focus-within label {
    color: var(--text);
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: border-color var(--fast);
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-color: var(--text-2);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--text);
}
.form-field textarea {
    min-height: 150px;
    resize: vertical;
}
.form-field.invalid input,
.form-field.invalid textarea,
.form-field.invalid select {
    border-color: #dc2626;
}
.form-error {
    display: none;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 6px;
}
.form-field.invalid .form-error {
    display: block;
}
.form-success {
    display: none;
    border: 1px solid #16a34a;
    padding: 48px 32px;
    text-align: center;
}
.form-success.show {
    display: block;
}
.form-success .ok {
    width: 48px;
    height: 48px;
    background: #16a34a;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    border-radius: 50%;
}
.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.info-card {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 32px;
}
.info-card .spec-table {
    margin: 24px 0 32px;
}
.map-facade {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-facade iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Footer ── */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
}
.footer::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--red);
}
.footer .container {
    padding-top: 64px;
    padding-bottom: 32px;
}
.footer__grid {
    display: grid;
    grid-template-columns: max-content 1.1fr 1.3fr auto;
    gap: 48px 56px;
    padding-bottom: 64px;
    align-items: start;
}
@media (max-width: 1023px) {
    .footer__grid {
        grid-template-columns: max-content 1fr;
        gap: 40px 56px;
    }
}
@media (max-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}
.footer__logo img {
    height: 52px;
    width: auto;
    margin-bottom: 20px;
}
.footer__legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__company {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer__registry {
    margin: 0;
    display: grid;
    gap: 4px;
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
}
.footer__registry > div {
    display: grid;
    grid-template-columns: 2.5ch auto;
    column-gap: 14px;
}
.footer__registry dt {
    color: var(--dark-muted);
}
.footer__registry dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
}
.footer nav.footer__nav ul {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 12px 44px;
}
.footer h4 {
    color: var(--dark-muted);
    margin-bottom: 20px;
}
.footer ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9375rem;
}
.footer a {
    transition: color var(--fast);
}
.footer a:hover {
    color: var(--white);
}
.footer .spec-table th,
.footer .spec-table td {
    border-color: var(--dark-border);
    padding: 10px 0;
    white-space: nowrap;
}
.footer .spec-table th {
    padding-right: 28px;
}
.footer .spec-table td {
    color: rgba(255, 255, 255, 0.7);
}
.footer__bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--dark-muted);
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── Social icons ── */
.social {
    display: flex;
    gap: 12px;
}
.social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-border);
    color: rgba(255, 255, 255, 0.7);
    transition:
        color var(--fast) var(--ease),
        border-color var(--fast) var(--ease),
        transform var(--fast) var(--ease);
}
.social__link:hover {
    color: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
}
.social__link:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}
.kt__social {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (prefers-reduced-motion: reduce) {
    .social__link {
        transition:
            color var(--fast),
            border-color var(--fast);
    }
    .social__link:hover {
        transform: none;
    }
}

/* ── Scroll Reveal ── */
/* Content always visible by default. JS adds body.rv-ready to enable animations. */
.rv {
    opacity: 1;
    transform: none;
}
.rv-ready .rv {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 500ms var(--ease),
        transform 500ms var(--ease);
}
.rv-ready .rv.in {
    opacity: 1;
    transform: none;
}
.rv-ready .rv-stagger > .rv:nth-child(2) {
    transition-delay: 80ms;
}
.rv-ready .rv-stagger > .rv:nth-child(3) {
    transition-delay: 160ms;
}
.rv-ready .rv-stagger > .rv:nth-child(4) {
    transition-delay: 240ms;
}
@media (prefers-reduced-motion: reduce) {
    .rv-ready .rv {
        opacity: 1;
        transform: none;
    }
}

/* ── Background grid ── */
.bg-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
}

/* ================================================================
   O NAMA — Redesign v4
   ================================================================ */

/* Intro 2-col split */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.about-intro__left h2 {
    max-width: 16ch;
}
.about-intro__right {
    padding-top: 48px;
}
@media (max-width: 1023px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-intro__right {
        padding-top: 0;
    }
}

/* Stats band */
.about-stats-band {
    background: var(--dark);
    border-top: 3px solid var(--red);
    border-bottom: 1px solid var(--dark-border);
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.about-stat {
    padding: 48px 32px;
    border-left: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about-stat:first-child {
    border-left: none;
    padding-left: 0;
}
.about-stat__num {
    font-family: var(--f-head);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--dark-text);
}
.about-stat__label {
    color: var(--dark-muted);
    display: block;
}
@media (max-width: 1023px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stat {
        padding: 32px 24px;
    }
    .about-stat:nth-child(3) {
        border-left: none;
    }
}
@media (max-width: 600px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    .about-stat {
        border-left: none;
        border-top: 1px solid var(--dark-border);
        padding: 24px 0;
    }
    .about-stat:first-child {
        border-top: none;
    }
}

/* Values grid — horizontal card layout */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 767px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.vcard {
    display: flex;
    gap: 24px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    background: var(--white);
    position: relative;
    transition:
        border-color var(--med),
        box-shadow var(--med),
        transform var(--med) var(--ease);
}
.vcard::before {
    content: '';
    position: absolute;
    left: -1px;
    top: -1px;
    bottom: -1px;
    width: 4px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--med) var(--ease);
}
.vcard:hover::before {
    transform: scaleY(1);
}
.vcard:hover {
    border-color: var(--border-2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
.vcard__icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vcard__icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--red);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.vcard__content {
    flex: 1;
    min-width: 0;
}
.vcard__idx {
    color: var(--red);
    display: block;
    margin-bottom: 10px;
}
.vcard__content h3 {
    margin-bottom: 10px;
}
.vcard__content p {
    color: var(--text-2);
    font-size: 0.9375rem;
    line-height: 1.6;
}
@media (max-width: 600px) {
    .vcard {
        flex-direction: column;
        gap: 16px;
    }
}

/* Mission section */
.about-mission {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.about-mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        115deg,
        transparent 0 26px,
        rgba(255, 255, 255, 0.015) 26px 27px
    );
    pointer-events: none;
}
.about-mission__inner {
    position: relative;
    z-index: 1;
    padding: 96px 0;
}
.about-quote {
    font-family: var(--f-head);
    font-weight: 500;
    font-size: clamp(1.375rem, 2.8vw, 2rem);
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--dark-text);
    max-width: 36em;
    position: relative;
    padding-left: 40px;
}
.about-quote__mark {
    position: absolute;
    left: -8px;
    top: -24px;
    font-family: var(--f-head);
    font-weight: 700;
    font-size: 6rem;
    line-height: 1;
    color: var(--red);
    opacity: 0.3;
}
.about-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    height: calc(100% - 8px);
    width: 4px;
    background: var(--red);
    transform: skewX(var(--skew));
}
.about-quote__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-left: 40px;
}
.about-quote__line {
    width: 40px;
    height: 2px;
    background: var(--red);
    transform: skewX(var(--skew));
}
.about-quote__author .mono-label {
    color: var(--dark-muted);
}
@media (max-width: 767px) {
    .about-mission__inner {
        padding: 64px 0;
    }
    .about-quote {
        padding-left: 28px;
    }
    .about-quote__author {
        padding-left: 28px;
    }
    .about-quote__mark {
        font-size: 4rem;
        top: -16px;
        left: -4px;
    }
}

/* ================================================================
   KONTAKT — Redesign v4
   ================================================================ */

/* Contact method cards */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 767px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

.cmethod {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    background: var(--white);
    position: relative;
    transition:
        border-color var(--med),
        box-shadow var(--med),
        transform var(--med) var(--ease);
    text-decoration: none;
    color: var(--text);
}
.cmethod::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--med) var(--ease);
}
.cmethod:hover::after {
    transform: scaleX(1);
}
.cmethod:hover {
    border-color: var(--border-2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
.cmethod__icon {
    width: 44px;
    height: 44px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.cmethod__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--red);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.cmethod__label {
    color: var(--text-2);
}
.cmethod__value {
    color: var(--text);
}
.cmethod__note {
    color: var(--text-2);
    font-size: 0.875rem;
}

/* Contact grid v2 */
.contact-grid-v2 {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 64px;
    align-items: start;
}
@media (max-width: 1023px) {
    .contact-grid-v2 {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Form wrap */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px 36px;
}
@media (max-width: 600px) {
    .contact-form-wrap {
        padding: 28px 20px;
    }
}

/* 2-col form rows */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 600px) {
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Form submit row */
.form-submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.form-submit-note {
    color: var(--text-2);
}

/* Placeholder styling */
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
    color: var(--text-3);
    font-size: 0.9375rem;
}

/* Contact sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-sidebar__card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
}
.contact-sidebar__card .spec-table {
    margin-top: 0;
}
.contact-sidebar__map {
}
.contact-sidebar__map .map-facade {
    aspect-ratio: 16/9;
}
