/* NEO Fabrics — Zerra Framer template style
   Reference: https://zerra-template.framer.website */

:root {
    /* NEO Fabrics brand (from official SVGs) */
    --neo-terracotta: #e26b50;
    --neo-navy: #142a4f;
    --neo-white: #feffff;

    --z-cream: #f7f4f1;
    --z-cream-2: #e8e3dc;
    --z-red: var(--neo-terracotta);
    --z-red-hover: #c95a42;
    --z-red-deep: var(--neo-navy);
    --z-text: var(--neo-navy);
    --z-text-soft: rgba(20, 42, 79, 0.62);
    --z-blush: #e8a898;
    --z-white: var(--neo-white);

    --font-display: "Outfit", system-ui, sans-serif;
    --font-body: "Outfit", system-ui, sans-serif;
    --font-nav: "Outfit", system-ui, sans-serif;

    --container: 1200px;
    --pad: clamp(20px, 4vw, 48px);
    --header-h: 58px;
    --nav-bar-radius: clamp(14px, 1.6vw, 18px);
    --nav-float-gap: clamp(10px, 1.5vw, 18px);
    --nav-bar-width: min(
        calc(var(--container) + var(--pad) * 2),
        calc(100% - var(--nav-float-gap) * 2)
    );
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --header-top: calc(var(--safe-top) + var(--nav-float-gap));
    --header-offset: calc(var(--header-top) + var(--header-h));
    --page-top: calc(var(--header-offset) + 28px);
    --app-height: 100dvh;
    --frame-radius: clamp(18px, 2.5vw, 40px);
    --radius-pill: 999px;
    --radius-card: 20px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: auto;
    overflow-x: clip;
    overscroll-behavior: none;
    height: 100%;
    color-scheme: light;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--z-text);
    background: var(--z-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    padding: 0;
    min-height: var(--app-height, 100dvh);
    touch-action: pan-x pan-y;
}
body.scroll-locked {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
}
body.nav-open,
body.filter-open {
    overflow: hidden;
    overscroll-behavior: none;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.site-wrapper {
    min-height: var(--app-height, 100dvh);
    display: flex;
    flex-direction: column;
    overflow-x: clip;
    max-width: 100%;
}
.site-frame {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    margin: 0;
    background: var(--z-white);
    border-radius: 0;
    overflow: clip;
    box-shadow: none;
}
.site-main { flex: 1; overflow-x: clip; }

.z-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--z-text-soft);
    margin-bottom: 12px;
}
.z-eyebrow--center { text-align: center; }
.z-eyebrow--light { color: rgba(254, 255, 255, .72); }

.z-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--z-red);
    border-bottom: 1px solid rgba(226, 107, 80, .25);
    transition: border-color .25s ease, color .25s ease;
}
.z-link:hover {
    border-bottom-color: var(--z-red);
    color: var(--z-red-hover);
}
.z-link__icon { display: inline-block; vertical-align: -3px; margin-left: 4px; }

/* Icons — Lucide + Simple Icons */
.z-icon,
[data-lucide] {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}
.z-icon svg,
[data-lucide] svg {
    display: block;
    stroke-width: 2;
}
.z-icon--brand {
    display: block;
    object-fit: contain;
}
.z-flag {
    display: block;
    flex-shrink: 0;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(20, 42, 79, .08);
}
.z-icon-btn .z-icon,
.z-icon-btn [data-lucide],
.z-icon-btn .z-icon--brand {
    display: block;
}

/* Icon buttons — flat, no filled circles */
.z-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
    background: transparent;
    color: var(--z-text);
    transition: color .2s ease, opacity .2s ease;
}
.z-icon-btn svg {
    display: block;
    flex-shrink: 0;
}
.z-icon-btn:hover {
    color: var(--z-red);
    opacity: 1;
}

.z-whatsapp-float {
    position: fixed;
    right: max(clamp(16px, 3vw, 24px), var(--safe-right));
    bottom: max(clamp(16px, 3vw, 24px), var(--safe-bottom));
    z-index: 950;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, .35);
    transition: opacity .2s ease, transform .2s ease;
}
.z-whatsapp-float:hover {
    opacity: .92;
    transform: none;
}
.z-whatsapp-float svg { display: block; }

/* Home page — flat full-bleed hero */
body.page-home { background: var(--z-white); }
body.page-home .site-frame { background: var(--z-white); }
body.page-home .z-header {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}
body.page-home .z-header.is-scrolled .z-header__bar {
    background: linear-gradient(
        165deg,
        rgba(254, 255, 255, 0.92) 0%,
        rgba(254, 255, 255, 0.82) 50%,
        rgba(254, 255, 255, 0.9) 100%
    );
    border-color: rgba(254, 255, 255, 0.65);
    box-shadow: none;
}
body.page-home .site-main { animation: none; }
body.page-home .z-hero--cinematic { padding: 0; }
body.page-home .z-hero-frame {
    border-radius: 0;
    min-height: clamp(520px, 100svh, 900px);
    max-height: none;
}
body.page-home .z-marquee--materials { background: transparent; }

/* ─── BUTTONS ─── */
.z-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    background: var(--z-red);
    color: var(--z-white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.z-btn:hover {
    background: var(--z-red-hover);
    transform: none;
    box-shadow: none;
}
.z-btn:active { transform: translateY(0); box-shadow: none; }
.z-btn--sm { padding: 10px 18px; font-size: 10px; }
.z-btn--block { width: 100%; }
.z-btn--buy { margin-bottom: 10px; }
.z-btn--outline {
    background: transparent;
    color: var(--z-text);
    border-color: var(--z-cream-2);
    box-shadow: none;
}
.z-btn--outline:hover {
    background: var(--z-cream);
    border-color: rgba(20, 42, 79, .14);
    color: var(--z-text);
    box-shadow: none;
    transform: none;
}

/* ─── HEADER (detached floating pill) ─── */
.z-header {
    position: fixed;
    top: var(--header-top);
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-h);
    background: transparent;
    border: none;
    pointer-events: none;
    padding-left: var(--safe-left);
    padding-right: var(--safe-right);
}
body.nav-open .z-header {
    z-index: 1001;
}
.z-header__bar {
    pointer-events: auto;
    height: 100%;
    width: var(--nav-bar-width);
    margin: 0 auto;
    border-radius: var(--nav-bar-radius);
    background: linear-gradient(
        165deg,
        rgba(254, 255, 255, 0.76) 0%,
        rgba(254, 255, 255, 0.48) 45%,
        rgba(254, 255, 255, 0.64) 100%
    );
    backdrop-filter: blur(24px) saturate(1.55);
    -webkit-backdrop-filter: blur(24px) saturate(1.55);
    border: 1px solid rgba(254, 255, 255, 0.52);
    box-shadow: none;
    transition: background .25s ease, border-color .25s ease;
}
body.page-home .z-header:not(.is-scrolled) .z-header__bar {
    background: linear-gradient(
        165deg,
        rgba(254, 255, 255, 0.68) 0%,
        rgba(254, 255, 255, 0.42) 45%,
        rgba(254, 255, 255, 0.58) 100%
    );
    border-color: rgba(254, 255, 255, 0.45);
    box-shadow: none;
}
.z-header.is-scrolled .z-header__bar {
    background: linear-gradient(
        165deg,
        rgba(254, 255, 255, 0.92) 0%,
        rgba(254, 255, 255, 0.8) 50%,
        rgba(254, 255, 255, 0.88) 100%
    );
    border-color: rgba(254, 255, 255, 0.62);
    box-shadow: none;
}
.z-header__inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    max-width: none;
    padding: 0 clamp(14px, 2.5vw, 22px);
}
.z-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    min-width: 0;
}
.z-logo__mark {
    width: clamp(24px, 3.5vw, 28px);
    height: auto;
    flex-shrink: 0;
}
.z-logo__word {
    display: inline-flex;
    align-items: baseline;
    gap: 0.32em;
    font-family: var(--font-display);
    font-size: clamp(15px, 2.2vw, 17px);
    font-weight: 300;
    letter-spacing: -.01em;
    color: var(--z-text);
    white-space: nowrap;
}
.z-logo__neo {
    font-weight: 600;
    color: var(--z-red);
}
.z-logo__fabrics { color: var(--z-text); }
.z-logo__img {
    width: auto;
    height: clamp(28px, 4vw, 36px);
}
.z-logo__img--header { max-width: 175px; }
.z-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}
.z-nav__sheet,
.z-nav__items {
    display: contents;
}
@media (min-width: 1025px) {
    .z-nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        max-width: calc(100% - 360px);
        pointer-events: auto;
    }
    .z-nav__sheet-head,
    .z-nav__sheet-foot {
        display: none !important;
    }
    .z-nav__lang-mobile { display: none !important; }
}
.z-nav__link {
    position: relative;
    padding: 8px 10px;
    font-family: var(--font-nav);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--z-text-soft);
    transition: color .2s ease;
    white-space: nowrap;
}
.z-nav__link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity .2s ease, transform .2s ease;
}
.z-nav__link:hover,
.z-nav__link.is-active { color: var(--z-red); }
.z-nav__link:hover::after,
.z-nav__link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}
.z-header__actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 6px;
}
.z-lang {
    display: none;
}
.z-lang-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
    background: transparent;
    transition: opacity .2s ease;
}
.z-lang-btn:hover { opacity: .72; }
.z-flag {
    display: inline-block;
    width: 22px;
    height: 16px;
    border-radius: 2px;
    overflow: hidden;
    line-height: 1;
    box-shadow: none;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.z-flag.fi {
    font-size: 16px;
    line-height: 16px;
}
.z-nav__label,
.z-nav__arrow {
    display: none;
}
@media (min-width: 1025px) {
    .z-nav__label { display: inline; }
}
.z-nav__lang-mobile { display: none; }
.z-form-hint {
    font-size: 11px;
    color: var(--z-text-soft);
    margin: -6px 0 18px;
    letter-spacing: .02em;
}
.z-burger {
    display: none;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.z-burger__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.z-burger__icon--close { display: none; }
.z-burger.is-open .z-burger__icon--menu { display: none; }
.z-burger.is-open .z-burger__icon--close { display: inline-flex; }

@media (min-width: 1025px) {
    .z-burger,
    .z-icon-btn--mobile,
    .z-lang-btn--mobile { display: none !important; }
}
.hide-mobile { display: inline-flex; }

/* ─── HERO ─── */
.z-hero--cinematic {
    padding-top: 0;
    padding-bottom: 0;
    overflow: clip;
}
.z-hero-frame {
    position: relative;
    min-height: clamp(520px, 88svh, 760px);
    border-radius: 0;
    overflow: clip;
    isolation: isolate;
}
.z-hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.z-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
    pointer-events: none;
}
.z-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.z-hero-slide__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
    display: block;
}
.z-hero-frame__media,
.z-hero-frame__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.z-hero-frame__bg {
    object-fit: cover;
    object-position: center 22%;
}
.z-hero-frame__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(20, 42, 79, .28) 0%, rgba(20, 42, 79, .08) 32%, rgba(20, 42, 79, .78) 100%);
    pointer-events: none;
}
.z-hero-slideshow__dots {
    position: absolute;
    top: calc(var(--header-offset) + 10px);
    bottom: auto;
    left: 50%;
    z-index: 4;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}
.z-hero-slideshow__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(254, 255, 255, .38);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.z-hero-slideshow__dot.is-active {
    background: var(--z-white);
    transform: scale(1.15);
}
.z-hero-display {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: calc(var(--header-offset) + 28px) var(--pad) 0;
    pointer-events: none;
}
.z-hero-display__title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: .18em;
}
.z-hero-display__word {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    line-height: .95;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(254, 255, 255, .98);
}
.z-hero-display__word--accent {
    color: var(--z-red);
    font-weight: 400;
}
.z-hero-frame__content {
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(20px, 4vw, 48px);
    align-items: end;
    padding-bottom: clamp(52px, 7vw, 72px);
    padding-top: 0;
}
.z-hero-copy { max-width: 24rem; }
.z-hero-copy__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(254, 255, 255, .92);
    margin-bottom: 10px;
}
.z-hero-copy__lead {
    font-size: 14px;
    line-height: 1.65;
    font-weight: 300;
    color: rgba(254, 255, 255, .86);
}
.z-hero-copy__lead--short { display: none; }
.z-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: min(100%, 300px);
    margin-left: auto;
}
@media (min-width: 1025px) {
    .z-hero-actions {
        width: min(100%, 500px);
    }
    .z-hero-shortcuts {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
    }
    .z-hero-shortcut {
        min-height: 76px;
        padding: 10px 8px;
    }
    .z-hero-shortcut__label {
        font-size: 8px;
        letter-spacing: .07em;
        line-height: 1.2;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
.z-btn--hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 22px;
    font-size: 11px;
    letter-spacing: .12em;
    background: var(--z-red);
    border-color: var(--z-red);
    box-shadow: none;
}
.z-btn--hero:hover {
    background: var(--z-red-hover);
    border-color: var(--z-red-hover);
    transform: none;
}
.z-btn__icon { flex-shrink: 0; }
.z-hero-shortcuts {
    display: flex;
    gap: 8px;
    justify-content: stretch;
    width: 100%;
}
.z-hero-shortcut {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 72px;
    padding: 10px 6px;
    border-radius: 14px;
    border: 1px solid rgba(254, 255, 255, .32);
    background: rgba(254, 255, 255, .1);
    color: rgba(254, 255, 255, .94);
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.z-hero-shortcut:hover {
    border-color: rgba(254, 255, 255, .55);
    background: rgba(254, 255, 255, .16);
    color: var(--z-white);
    text-decoration: none;
}
.z-hero-shortcut__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(254, 255, 255, .14);
}
.z-hero-shortcut__icon .z-icon,
.z-hero-shortcut__icon svg,
.z-hero-shortcut__icon [data-lucide] {
    width: 20px;
    height: 20px;
}
.z-hero-shortcut__icon svg {
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}
.z-hero-shortcut__label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.25;
}
.z-hero-funnels {
    display: grid;
    grid-template-columns: repeat(2, minmax(128px, 1fr));
    gap: 8px 10px;
    width: min(100%, 340px);
    margin-left: auto;
}
.z-hero-funnels .z-funnel:nth-child(even) { margin-top: 0; }
.z-hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 4;
    width: auto;
    height: auto;
    margin-left: 0;
    transform: translateX(-50%);
    border: none;
    background: transparent;
    color: rgba(254, 255, 255, .72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: color .25s ease, transform .25s ease;
}
.z-hero-scroll:hover {
    color: var(--z-white);
    transform: translateX(-50%) translateY(2px);
}
.z-funnel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(254, 255, 255, .42);
    background: transparent;
    color: var(--z-white);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .11em;
    text-transform: uppercase;
    text-align: center;
    transition: border-color .22s ease, color .22s ease, background .22s ease;
}
.z-funnel:hover {
    border-color: rgba(254, 255, 255, .85);
    background: rgba(254, 255, 255, .08);
    transform: none;
    box-shadow: none;
}
.z-funnel--primary {
    grid-column: span 2;
    border-color: var(--z-red);
    color: var(--z-white);
}
.z-funnel--primary:hover {
    background: var(--z-red);
    border-color: var(--z-red);
    box-shadow: none;
}
.z-hero__brand-row {
    text-align: center;
    padding: clamp(28px, 4vw, 40px) 0 clamp(12px, 2vw, 20px);
}
.z-hero__logo--compact {
    width: min(320px, 72vw);
    height: auto;
    margin: 0 auto;
}
.z-hero:not(.z-hero--cinematic) {
    padding-top: calc(var(--header-offset) + 32px);
    padding-bottom: clamp(48px, 8vw, 80px);
    overflow: hidden;
}
.z-hero__stage {
    position: relative;
    min-height: clamp(320px, 52vw, 520px);
    display: grid;
    place-items: center;
    margin-bottom: clamp(32px, 5vw, 56px);
}
.z-hero__brand {
    position: relative;
    z-index: 2;
    width: min(520px, 78vw);
    margin: 0 auto;
}
.z-hero__logo {
    width: 100%;
    height: auto;
}
.z-hero__mark {
    position: absolute;
    width: clamp(52px, 9vw, 84px);
    top: 6%;
    left: 8%;
    z-index: 3;
    filter: none;
}
.z-hero__title {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 11rem);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.02em;
    text-transform: lowercase;
    color: var(--z-text);
    text-align: center;
}
.z-hero__title em {
    font-style: normal;
    color: var(--z-red);
}
.z-hero__float {
    position: absolute;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}
.z-hero__float--1 {
    width: clamp(100px, 16vw, 180px);
    aspect-ratio: 3/4;
    top: 8%;
    left: 4%;
    transform: rotate(-6deg);
}
.z-hero__float--2 {
    width: clamp(80px, 12vw, 140px);
    aspect-ratio: 1;
    top: 5%;
    right: 8%;
    transform: rotate(8deg);
}
.z-hero__float--3 {
    width: clamp(90px, 14vw, 160px);
    aspect-ratio: 4/5;
    bottom: 10%;
    left: 12%;
    transform: rotate(4deg);
}
.z-hero__float--4 {
    width: clamp(70px, 10vw, 120px);
    aspect-ratio: 1;
    bottom: 15%;
    right: 6%;
    transform: rotate(-10deg);
}
.z-hero__intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto clamp(28px, 4vw, 40px);
}
.z-hero__lead {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--z-text-soft);
    line-height: 1.7;
}
.z-hero__pills-wrap {
    display: none;
}
.z-pill {
    flex-shrink: 0;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--z-cream-2);
    background: rgba(255, 255, 255, .45);
    font-size: 13px;
    font-weight: 500;
    color: var(--z-text);
    transition: background .2s, border-color .2s, color .2s;
    white-space: nowrap;
}
.z-pill:hover {
    background: var(--z-red);
    border-color: var(--z-red);
    color: var(--z-white);
}
.z-hero__tagline {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 48px) 0 clamp(8px, 2vw, 16px);
}
.z-hero__tagline p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    font-weight: 300;
    line-height: 1.45;
    color: var(--z-text-soft);
}

/* ─── ABOUT ─── */
.z-about {
    padding: clamp(64px, 10vw, 120px) 0;
    background: var(--z-white);
}
.z-about__heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.35;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    color: var(--z-text);
}

/* ─── SERVICES ─── */
.z-services {
    padding: clamp(64px, 10vw, 120px) 0;
    background: var(--z-white);
    border-top: 1px solid rgba(20, 42, 79, .06);
}
.z-services__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: clamp(32px, 5vw, 48px);
}
.z-services__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 300;
    line-height: 1.15;
    max-width: 14ch;
}
.z-services__count {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--z-red);
    margin-top: 4px;
}
.z-services__sub {
    font-size: 14px;
    color: var(--z-text-soft);
    margin-bottom: 8px;
}
.z-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border-radius: 0;
    overflow: hidden;
    background: var(--z-white);
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    margin-bottom: 32px;
    transition: border-color .25s ease;
}
.z-featured-card:hover { border-bottom-color: rgba(226, 107, 80, .35); transform: none; }
.z-featured-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .35s ease;
}
.z-featured-card:hover .z-featured-card__img img { transform: none; opacity: .94; }
.z-featured-card__body {
    padding: clamp(24px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.z-featured-card__cat {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--z-text-soft);
    margin-bottom: 8px;
}
.z-featured-card__body h3 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 400;
    margin-bottom: 12px;
}
.z-featured-card__meta {
    font-size: 13px;
    color: var(--z-blush);
    margin-bottom: 8px;
}
.z-featured-card__price {
    font-size: 15px;
    font-weight: 600;
    color: var(--z-red);
}
.z-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.z-service-tag {
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--z-cream-2);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--z-text-soft);
    background: var(--z-cream);
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.z-featured-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.z-service-tag:hover {
    border-color: rgba(226, 107, 80, .35);
    color: var(--z-text);
    transform: none;
}
.z-service-tag:first-child,
.z-service-tag.is-active {
    background: var(--z-red);
    border-color: var(--z-red);
    color: var(--z-white);
}
.z-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
}
.z-service-card {
    display: block;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    background: var(--z-white);
    border: none;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    transition: border-color .25s ease, opacity .35s ease, transform .35s ease;
    text-decoration: none;
    color: inherit;
}
.z-service-card:hover {
    transform: none;
    box-shadow: none;
    border-bottom-color: rgba(226, 107, 80, .35);
    text-decoration: none;
}
.z-service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .35s ease;
}
.z-service-card:hover .z-service-card__img img { transform: none; opacity: .92; }
.z-service-card__img {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.z-product-slider { position: relative; margin-top: 4px; }
.home-products-swiper { overflow: hidden; padding-bottom: 4px; }
.home-products-swiper .swiper-slide { height: auto; }
.z-product-slider__nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
}
.z-product-slider__btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(20, 42, 79, .12);
    border-radius: 50%;
    background: var(--z-white);
    color: var(--z-text);
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease;
}
.z-product-slider__btn:hover { color: var(--z-red); border-color: var(--z-red); }
.z-product-slider__btn.swiper-button-disabled { opacity: .35; pointer-events: none; }
.z-service-card__body { padding: 18px; }
.z-service-card__cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--z-text-soft);
}
.z-service-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    margin: 6px 0 8px;
    line-height: 1.25;
}
.z-service-card__price {
    font-size: 14px;
    font-weight: 600;
    color: var(--z-red);
}
/* ─── QUOTE ─── */
.z-quote {
    padding: clamp(64px, 10vw, 120px) 0;
    background: var(--z-cream);
    overflow: visible;
}
.z-quote__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(32px, 6vw, 64px);
    align-items: center;
}
.z-quote__visuals {
    position: relative;
    min-height: clamp(280px, 38vw, 380px);
    overflow: visible;
    isolation: isolate;
}
.z-quote__text {
    position: relative;
    z-index: 1;
    min-width: 0;
}
.z-quote__frame {
    position: absolute;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(20, 42, 79, .1);
}
.z-quote__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.z-quote__frame--1 {
    width: 65%;
    aspect-ratio: 3/4;
    top: 0;
    left: 0;
    transform: rotate(-4deg);
}
.z-quote__frame--2 {
    width: 55%;
    aspect-ratio: 1;
    bottom: 0;
    right: 0;
    transform: rotate(6deg);
}
.z-quote__text p {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.35;
    color: var(--z-text);
    margin-bottom: 24px;
}
.z-quote__text footer strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}
.z-quote__text footer span {
    font-size: 13px;
    color: var(--z-text-soft);
}

/* ─── TESTIMONIALS ─── */
.z-testimonials {
    padding: clamp(64px, 10vw, 100px) 0;
    background: var(--z-white);
}
.z-testimonials__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    text-align: center;
    max-width: 28ch;
    margin: 0 auto 12px;
    line-height: 1.25;
}
.z-testimonials__label {
    text-align: center;
    font-size: 13px;
    color: var(--z-text-soft);
    margin-bottom: 40px;
}
.z-testimonials__slider {
    padding: 0 var(--pad) 20px;
    max-width: calc(var(--container) + var(--pad) * 2);
    margin: 0 auto;
    position: relative;
}
.z-testimonial-card {
    background: var(--z-cream);
    border-radius: var(--radius-card);
    padding: clamp(28px, 4vw, 40px);
    max-width: 480px;
    margin: 0 auto;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.z-testimonial-card__quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--z-text-soft);
    margin-bottom: 20px;
}
.z-testimonial-card footer strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}
.z-testimonial-card footer span {
    font-size: 12px;
    color: var(--z-blush);
}
.z-swiper__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}
.z-swiper__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--z-cream-2);
    background: var(--z-cream);
    position: relative;
}
.z-swiper__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid var(--z-text);
    border-right: 1.5px solid var(--z-text);
    transform: translate(-60%, -50%) rotate(45deg);
}
.z-swiper__prev::after { transform: translate(-30%, -50%) rotate(-135deg); }

/* ─── SOCIAL ─── */
.z-social {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--z-white);
    border-top: 1px solid rgba(20, 42, 79, .06);
    overflow: hidden;
}
.z-social__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.z-social__links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin-top: 16px;
}
.z-social__links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--z-red);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, color .2s;
}
.z-social__links a:hover { border-bottom-color: var(--z-red); color: var(--z-red-hover); }
.z-social__icon,
.z-footer__icon {
    flex-shrink: 0;
    opacity: .9;
}
.z-social__floats {
    position: relative;
    min-height: 280px;
}
.z-social__frame {
    position: absolute;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
}
.z-social__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.z-social__frame--1 {
    width: 48%;
    aspect-ratio: 3/4;
    top: 0;
    left: 10%;
    transform: rotate(-5deg);
    --rot: -5deg;
}
.z-social__frame--2 {
    width: 40%;
    aspect-ratio: 1;
    top: 20%;
    right: 5%;
    transform: rotate(8deg);
    --rot: 8deg;
}
.z-social__frame--3 {
    width: 36%;
    aspect-ratio: 4/5;
    bottom: 0;
    left: 35%;
    transform: rotate(-3deg);
    --rot: -3deg;
}

/* ─── FOOTER ─── */
.z-footer {
    background: var(--z-red-deep);
    color: rgba(255, 255, 255, .88);
    padding: clamp(56px, 8vw, 88px) 0 calc(32px + var(--safe-bottom));
}
.z-footer--minimal {
    background: var(--neo-navy);
    padding: 24px 0;
    text-align: center;
}
.z-footer__minimal { font-size: 13px; opacity: .85; }
.z-footer__hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(48px, 6vw, 64px);
}
.z-footer__brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    color: inherit;
    text-decoration: none;
    transition: opacity .2s ease;
}
.z-footer__brand:hover { opacity: .92; }
.z-footer__mark {
    width: clamp(40px, 8vw, 52px);
    height: auto;
}
.z-footer__word {
    display: inline-flex;
    align-items: baseline;
    gap: 0.32em;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 300;
    letter-spacing: -.01em;
    line-height: 1;
}
.z-footer__neo {
    font-weight: 600;
    color: var(--z-red);
}
.z-footer__fabrics { color: var(--z-white); }
.z-footer__logo {
    width: min(280px, 62vw);
    height: auto;
    margin: 0 auto 28px;
}
.z-footer__hero h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--z-white);
    margin-bottom: 16px;
}
.z-footer__hero p {
    font-size: 14px;
    opacity: .75;
    margin-bottom: 24px;
    line-height: 1.65;
}
.z-footer__phones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 300px;
    margin: 0 auto;
}
.z-footer__phones a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: var(--z-white);
    border-bottom: 1px solid rgba(255, 255, 255, .28);
    padding-bottom: 6px;
    transition: border-color .2s ease, opacity .2s ease;
}
.z-footer__phones a:hover {
    border-bottom-color: var(--z-white);
    opacity: 1;
}
.z-newsletter {
    margin-top: 28px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.z-newsletter__trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 0 2px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    background: transparent;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--z-white);
    cursor: pointer;
    transition: border-color .2s ease, opacity .2s ease;
}
.z-newsletter__trigger:hover { border-bottom-color: var(--z-white); opacity: 1; }
.z-newsletter__trigger[hidden] { display: none; }
.z-newsletter__sub {
    font-size: 13px;
    opacity: .75;
    margin: 14px 0 12px;
    line-height: 1.55;
}
.z-newsletter__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}
.z-newsletter__row input {
    flex: 1 1 180px;
    min-width: 0;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    background: transparent;
    color: var(--z-white);
    font-family: var(--font-body);
    font-size: 15px;
}
.z-newsletter__row input::placeholder { color: rgba(255, 255, 255, .45); }
.z-newsletter__row input:focus {
    outline: none;
    border-bottom-color: var(--z-red);
}
.z-newsletter__row .z-btn {
    flex: 0 0 auto;
    padding: 10px 16px;
    border-color: rgba(255, 255, 255, .35);
    color: var(--z-white);
}
.z-newsletter__row .z-btn:hover {
    border-color: var(--z-white);
    background: rgba(255, 255, 255, .08);
}
.z-newsletter .form-feedback {
    margin-top: 10px;
    font-size: 13px;
}
.z-newsletter .form-feedback.success { color: #9fd4b0; }
.z-newsletter .form-feedback.error { color: #f0a8a0; }
.z-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 48px);
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-bottom: 40px;
}
.z-footer__col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--z-white);
    margin-bottom: 16px;
}
.z-footer__location-title {
    font-weight: 500;
    color: var(--z-white);
    margin-bottom: 6px;
}
.z-footer__col p,
.z-footer__col li {
    font-size: 14px;
    opacity: .72;
    line-height: 1.65;
    margin-bottom: 8px;
}
.z-footer__col a:hover { opacity: 1; color: var(--z-white); }
.z-footer__bottom {
    text-align: center;
    font-size: 12px;
    opacity: .55;
}

/* ─── INNER PAGES ─── */
.mi-page-header,
.page-header {
    padding: var(--page-top) 0 48px;
    background: var(--z-cream);
    text-align: center;
}
.mi-page-header__inner,
.page-header__inner { max-width: 640px; margin: 0 auto; }
.mi-page-header__title,
.page-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--z-text);
}
.mi-page-header__desc,
.page-header__desc {
    margin-top: 14px;
    color: var(--z-text-soft);
    font-size: 15px;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--z-text-soft);
}
.breadcrumb a:hover { color: var(--z-red); }

.mi-shop,
.mi-contact,
.section {
    padding: clamp(40px, 6vw, 64px) 0 clamp(64px, 8vw, 96px);
    background: var(--z-white);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
}
.product-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
}
.product-card__price { color: var(--z-red); font-weight: 600; }
.filter-pill {
    flex-shrink: 0;
    padding: 6px 0;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: transparent;
    color: var(--z-text-soft);
    white-space: nowrap;
    transition: color .2s ease, border-color .2s ease;
}
.filter-pill:hover { color: var(--z-red); }
.filter-pill.is-active {
    background: transparent;
    border-bottom-color: var(--z-red);
    color: var(--z-red);
}
.z-filter-pills {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(16px, 3vw, 28px);
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.z-filter-pills::-webkit-scrollbar { display: none; }
.z-filter-float {
    position: fixed;
    left: clamp(16px, 3vw, 24px);
    bottom: clamp(16px, 3vw, 24px);
    z-index: 940;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: none;
    place-items: center;
    background: var(--z-white);
    color: var(--z-text);
    border: 1px solid rgba(20, 42, 79, .12);
    box-shadow: none;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease;
}
.z-filter-float:hover { color: var(--z-red); border-color: var(--z-red); }
.z-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 930;
    background: rgba(20, 42, 79, .35);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s;
}
.z-filter-backdrop.is-open { opacity: 1; visibility: visible; }
.z-filter-drawer {
    position: fixed;
    left: var(--nav-float-gap);
    right: var(--nav-float-gap);
    bottom: var(--nav-float-gap);
    z-index: 945;
    max-height: min(72vh, 520px);
    padding: 22px clamp(18px, 3vw, 24px) calc(22px + env(safe-area-inset-bottom));
    background: rgba(254, 255, 255, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(20, 42, 79, .08);
    border-radius: clamp(18px, 3vw, 24px);
    box-shadow: 0 -8px 48px rgba(20, 42, 79, .12);
    transform: translateY(calc(100% + var(--nav-float-gap)));
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
}
.z-filter-drawer.is-open { transform: translateY(0); }
.z-filter-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.z-filter-drawer__head strong {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--z-text-soft);
}
.z-filter-drawer__close {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--z-text);
}
.z-filter-drawer__list {
    display: grid;
    gap: 0;
}
.filter-pill--drawer {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    white-space: normal;
    font-size: 14px;
    letter-spacing: .04em;
    transition: color .2s ease, padding-left .2s ease;
}
.filter-pill--drawer:hover {
    color: var(--z-red);
    padding-left: 6px;
}
.filter-pill--drawer.is-active {
    color: var(--z-red);
    font-weight: 500;
}
body.filter-open { overflow: hidden; }
body.page-shop .z-filter-float { display: grid; }
body.has-pdp-sticky .z-whatsapp-float,
body.has-pdp-sticky .z-filter-float {
    bottom: calc(76px + env(safe-area-inset-bottom));
}
@media (min-width: 769px) {
    body.page-shop .z-filter-float,
    .z-filter-drawer,
    .z-filter-backdrop { display: none !important; }
}
@media (max-width: 768px) {
    .z-filter-pills--inline { display: none; }
}
/* ─── GLOBAL FORMS (underline) ─── */
.z-form-aside {
    padding-top: clamp(8px, 2vw, 16px);
    border-top: 1px solid rgba(20, 42, 79, .08);
}
@media (min-width: 901px) {
    .z-form-aside {
        border-top: none;
        border-left: 1px solid rgba(20, 42, 79, .08);
        padding-top: 0;
        padding-left: clamp(24px, 4vw, 40px);
    }
}
.z-form-aside__title,
.form-panel h2 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--z-text-soft);
    margin-bottom: 20px;
}
.form-panel {
    padding: 0;
    background: transparent;
    border-radius: 0;
}
.form-stack label:not(.z-variant-chip),
.field-label,
.z-form label:not(.z-variant-chip),
.z-pdp__form label:not(.z-variant-chip) {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--z-text-soft);
}
.form-stack input:not([type="checkbox"]):not([type="radio"]),
.form-stack textarea,
.form-stack select,
.z-form input:not([type="checkbox"]):not([type="radio"]),
.z-form textarea,
.z-form select,
.z-select select {
    width: 100%;
    padding: 8px 0 10px;
    border: none;
    border-bottom: 1px solid rgba(20, 42, 79, .15);
    border-radius: 0;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    transition: border-color .2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.z-select {
    position: relative;
}
.z-select::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 11px;
    height: 7px;
    margin-top: -4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23142a4f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transition: transform .25s ease;
}
.z-select:focus-within::after {
    transform: rotate(180deg);
}
.z-select select,
.form-stack select,
.z-form select {
    cursor: pointer;
    padding-right: 28px;
    background-image: none;
}
.z-select select:hover,
.form-stack select:hover,
.z-form select:hover {
    border-bottom-color: rgba(226, 107, 80, .45);
}
.z-select select:focus,
.form-stack select:focus,
.z-form select:focus {
    border-bottom-color: var(--z-red);
}

.z-select select option,
.form-stack select option,
.z-form select option {
    color: var(--z-text);
    background: var(--z-cream);
}
.form-stack input:focus,
.form-stack textarea:focus,
.form-stack select:focus,
.z-form input:focus,
.z-form textarea:focus,
.z-form select:focus {
    outline: none;
    border-bottom-color: var(--z-red);
}
.form-stack textarea,
.z-form textarea { min-height: 72px; resize: vertical; }
.form-stack .field,
.z-form .field { margin-bottom: 18px; }
.z-field-label-spaced {
    display: block;
    margin-top: 14px;
}
.z-combobox {
    position: relative;
}
.z-combobox__input {
    width: 100%;
    padding: 8px 28px 10px 0;
    border: none;
    border-bottom: 1px solid rgba(26, 22, 18, .18);
    background: transparent;
    font: inherit;
    color: inherit;
}
.z-combobox__input:focus {
    outline: none;
    border-bottom-color: var(--z-red);
}
.z-combobox::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 1.5px solid var(--z-text-soft);
    border-bottom: 1.5px solid var(--z-text-soft);
    transform: rotate(45deg);
    pointer-events: none;
    transition: transform .2s ease;
}
.z-combobox:focus-within::after {
    transform: rotate(-135deg);
    margin-top: -2px;
}
.z-combobox__list {
    position: absolute;
    z-index: 30;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    max-height: 220px;
    overflow-y: auto;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: var(--z-cream);
    border: 1px solid rgba(26, 22, 18, .12);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(26, 22, 18, .12);
}
.z-combobox__option {
    padding: 9px 14px;
    font-size: 14px;
    cursor: pointer;
    color: var(--z-text);
}
.z-combobox__option.is-highlighted,
.z-combobox__option:hover {
    background: rgba(226, 107, 80, .1);
    color: var(--z-red-deep);
}
.z-combobox__option.is-selected {
    font-weight: 500;
}
.form-feedback.success { color: var(--z-red); }
.form-feedback.error { color: var(--z-red-deep); }
.z-form-success {
    font-size: 14px;
    color: var(--z-red);
    margin-bottom: 16px;
    line-height: 1.6;
}
.btn,
.btn--primary,
.btn-olive,
.z-btn-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    background: var(--z-red);
    color: var(--z-white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn--primary:hover,
.btn-olive:hover,
.btn:hover { background: var(--z-red-hover); color: var(--z-white); text-decoration: none; }
.btn--block { width: 100%; }
.btn--lg { padding: 14px 28px; }
.content-split,
.catalog-split,
.z-catalog__grid {
    display: grid;
    grid-template-columns: 1fr min(400px, 38%);
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}
.lead,
.z-lead {
    font-size: 15px;
    color: var(--z-text-soft);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 36rem;
}
/* Catalog */
.z-catalog__cover {
    margin-bottom: 24px;
    overflow: hidden;
}
.z-catalog__cover img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.z-catalog__list {
    display: grid;
    gap: 10px;
}
.z-catalog__list li {
    position: relative;
    padding: 0 0 10px 0;
    font-size: 13px;
    color: var(--z-text-soft);
    line-height: 1.55;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
}
.z-catalog__list li::before { display: none; }
.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 24px 0 32px;
}
.step-card {
    padding: 16px 0;
    background: transparent;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    border-radius: 0;
}
.step-card strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--z-red);
    margin-bottom: 8px;
}
.step-card p { font-size: 13px; color: var(--z-text-soft); line-height: 1.55; }
.material-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.material-tile {
    display: block;
    padding: 20px 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    transition: color .2s ease;
}
.material-tile:hover {
    color: var(--z-red);
    text-decoration: none;
}
.material-tile h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--z-text);
    margin-bottom: 8px;
}
.material-tile p { font-size: 13px; color: var(--z-text-soft); line-height: 1.55; }
.prose-page { max-width: 720px; margin: 0 auto; }
.prose {
    font-size: 15px;
    line-height: 1.75;
    color: var(--z-text-soft);
}
.prose h2, .prose h3 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--z-text);
    margin: 1.6em 0 .6em;
}
.prose p { margin-bottom: 1em; }
.prose ul, .prose ol { margin: 0 0 1em 1.2em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--z-red); border-bottom: 1px solid rgba(226, 107, 80, .35); }
.alert-success {
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: rgba(226, 107, 80, .12);
    color: var(--z-red-deep);
    font-size: 14px;
}
.empty-state,
.z-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--z-text-soft);
}
.z-inner--about .mi-about-hero__banner {
    margin-bottom: clamp(28px, 4vw, 40px);
}
.z-inner--about .mi-about-hero__banner img {
    width: 100%;
    max-height: min(52vh, 440px);
    object-fit: cover;
}
.z-inner--catalog .z-catalog__grid { align-items: start; }
.contact-tile {
    padding: 14px 0;
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    margin-bottom: 0;
}
.contact-tile h3 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--z-text-soft);
    margin-bottom: 6px;
    font-weight: 500;
}
.contact-tile p { font-size: 14px; line-height: 1.55; }
.pdp__title { font-family: var(--font-display); font-size: 2rem; font-weight: 400; }
.pdp__price { color: var(--z-red); font-weight: 600; }

/* About & services (legacy mi-* mapped to Zerra) */
.mi-about-hero__logo {
    width: min(320px, 72vw);
    height: auto;
    margin: 0 auto 20px;
}
.mi-about-hero,
.mi-page-header {
    padding-top: calc(var(--header-offset) + 32px);
    background: var(--z-white);
    border-bottom: 1px solid rgba(20, 42, 79, .06);
}
.mi-about-hero__banner img { border-radius: 0; }
.mi-values__card,
.mi-crafted__item {
    border-radius: 0;
    box-shadow: none;
}
.mi-about-hero__title,
.mi-values__heading,
.mi-timeline__heading {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--z-text);
}
.mi-label { color: var(--z-text-soft); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.mi-stats { background: var(--z-white); border-block: 1px solid var(--z-cream-2); }
.mi-stats__item strong { font-family: var(--font-display); color: var(--z-red); }
.mi-overview,
.mi-values,
.mi-crafted,
.mi-packaging { background: var(--z-white); padding: clamp(64px, 8vw, 100px) 0; }
.mi-values__img,
.mi-overview__gallery img { border-radius: 0; }
.mi-promise { background: var(--z-white); }
.mi-promise__card {
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    box-shadow: none;
}
.mi-timeline { background: var(--z-white); }
.mi-stats { background: var(--z-white); border-block: 1px solid rgba(20, 42, 79, .06); }
.mi-values__img,
.mi-overview__gallery img { border-radius: 0; }
.info-tile {
    padding: 14px 0;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    background: transparent;
    border-radius: 0;
}
.info-tile h3 {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--z-text-soft);
    margin-bottom: 6px;
}
.info-tile p { font-size: 13px; color: var(--z-text-soft); line-height: 1.55; }
.mi-timeline__dot { background: var(--z-red); }
.techniques { background: var(--z-white); padding: clamp(48px, 6vw, 80px) 0; }
.techniques__tab {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    border-radius: 0;
    padding: 14px 0;
    text-align: left;
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--z-text-soft);
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease;
}
.techniques__tab.is-active {
    background: transparent;
    color: var(--z-red);
    border-bottom-color: var(--z-red);
}
.techniques__imgs img { border-radius: var(--radius-card); }
.about-crafted__item { border-radius: var(--radius-card); background: var(--z-cream); border: none; }

/* ─── INNER PAGES ─── */
.z-page-header,
.mi-page-header {
    padding: calc(var(--header-offset) + 32px) 0 40px;
    background: var(--z-white);
    text-align: center;
    border-bottom: 1px solid rgba(20, 42, 79, .06);
}
.z-page-header__inner,
.mi-page-header__inner { max-width: 640px; margin: 0 auto; }
.z-page-header__title,
.mi-page-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--z-text);
    line-height: 1.15;
    overflow-wrap: break-word;
    hyphens: auto;
}
.z-page-header__desc,
.mi-page-header__desc {
    margin-top: 14px;
    font-size: 15px;
    color: var(--z-text-soft);
    line-height: 1.65;
}

.z-inner {
    padding: clamp(32px, 5vw, 48px) 0 clamp(64px, 8vw, 96px);
    background: var(--z-white);
    border-radius: 0;
    margin-top: 0;
}
.z-inner--shop { background: var(--z-white); }
.z-lead { font-size: 16px; color: var(--z-text-soft); line-height: 1.75; margin-bottom: 24px; max-width: 36rem; }
.z-inner__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.z-shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.z-shop-search {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 460px;
}
.z-shop-search input {
    flex: 1;
    padding: 8px 0 10px;
    border: none;
    border-bottom: 1px solid rgba(20, 42, 79, .15);
    border-radius: 0;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
}
.z-shop-search input:focus { outline: none; border-bottom-color: var(--z-red); }
.z-shop-count { font-size: 13px; color: var(--z-text-soft); }
.z-shop-intro {
    margin-bottom: 28px;
    color: var(--z-text-soft);
    max-width: 40rem;
    line-height: 1.65;
}
.z-product-grid { margin-bottom: 40px; }

.product-card {
    transition: border-color .25s ease;
    border-radius: 0;
    overflow: hidden;
    background: var(--z-white);
    border: none;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
}
.product-card.is-visible:hover {
    transform: none;
    box-shadow: none;
    border-bottom-color: rgba(226, 107, 80, .35);
}
.product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--z-cream);
    border-radius: 12px;
}
.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .35s ease;
}
.product-card__img--hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.product-card__media:hover .product-card__img--primary { transform: none; opacity: .92; }
.product-card__media:hover .product-card__img--hover { opacity: 1; }
.product-card__overlay {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: rgba(20, 42, 79, .72);
    transform: translateY(100%);
    transition: transform .35s ease, opacity .35s ease;
}
.product-card__media:hover .product-card__overlay { transform: translateY(0); opacity: 1; }
.product-card__overlay-btn {
    padding: 10px 16px;
    border-radius: 0;
    background: transparent;
    color: var(--z-white);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: border-color .2s ease, color .2s ease;
}
.product-card__media:hover .product-card__overlay-btn { transform: none; opacity: 1; }
.product-card__overlay-btn:hover { border-bottom-color: var(--z-white); color: var(--z-white); }
.product-card__info { padding: 16px 16px 18px; }
.product-card__variants {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: .04em;
    color: var(--z-text-soft);
    text-transform: uppercase;
}
.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--z-red);
    color: var(--z-white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.product-card__type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--z-text-soft);
    margin-bottom: 4px;
}
.status-pill {
    display: inline-block;
    padding: 2px 0;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--z-text-soft);
    border-bottom: 1px solid rgba(20, 42, 79, .12);
}
.status-pill--in_stock { color: var(--z-red); border-bottom-color: rgba(226, 107, 80, .35); }
.status-pill--low_stock { color: #b8860b; border-bottom-color: rgba(184, 134, 11, .35); }
.status-pill--made_to_order { color: var(--z-text); border-bottom-color: rgba(20, 42, 79, .25); }
.prose details {
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    padding: 14px 0;
}
.prose details + details { margin-top: 0; }
.prose summary {
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--z-text);
    list-style: none;
}
.prose summary::-webkit-details-marker { display: none; }
.prose details[open] summary { color: var(--z-red); margin-bottom: 10px; }
.z-service-card[hidden] { display: none !important; }
.z-service-card { transition: opacity .35s ease, transform .35s ease; }

.z-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.z-pagination a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--z-cream-2);
    font-size: 13px;
    font-weight: 500;
    transition: background .2s, color .2s, border-color .2s;
}
.z-pagination a.is-active,
.z-pagination a:hover {
    background: var(--z-red);
    border-color: var(--z-red);
    color: var(--z-white);
}

.z-empty p { margin-bottom: 20px; color: var(--z-text-soft); }

.z-btn--sm { padding: 10px 20px; font-size: 12px; }
.z-btn--block { width: 100%; }

/* PDP — flat, underline forms */
.z-pdp {
    padding-top: calc(var(--header-offset) + 20px);
    padding-bottom: clamp(48px, 7vw, 80px);
    background: var(--z-white);
}
.z-pdp .breadcrumb { justify-content: flex-start; margin-bottom: 24px; font-size: 12px; }
.z-pdp__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
    margin-bottom: clamp(40px, 6vw, 64px);
}
.z-pdp__gallery-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--z-cream);
}
.z-pdp__gallery {
    overflow: hidden;
    background: transparent;
    position: relative;
}
.product-swiper,
.product-swiper .swiper-wrapper,
.product-swiper .swiper-slide { height: auto; }
.z-pdp__slide {
    overflow: hidden;
    border-radius: 14px;
}
.z-pdp__slide img {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: min(72vh, 540px);
    object-fit: cover;
    display: block;
    background: var(--z-cream);
}
.z-pdp__ig-controls {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(20, 42, 79, .42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.z-pdp__ig-btn {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    padding: 0;
    transition: opacity .2s ease, transform .2s ease;
}
.z-pdp__ig-btn:hover { opacity: .85; }
.z-pdp__ig-btn.swiper-button-disabled { opacity: .35; pointer-events: none; }
.z-pdp__ig-dots {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.z-pdp__ig-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    transition: background .25s ease, transform .25s ease;
}
.z-pdp__ig-dot.is-active {
    background: #fff;
    transform: scale(1.15);
}
@media (min-width: 901px) {
    .z-pdp__slide img {
        aspect-ratio: 4 / 5;
        max-height: min(72vh, 640px);
    }
}
.z-pdp__panel {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
}
.z-pdp__buybox {
    position: sticky;
    top: calc(var(--header-offset) + 12px);
    border-top: 1px solid rgba(20, 42, 79, .08);
    padding-top: clamp(20px, 3vw, 28px);
    overflow: hidden;
    isolation: isolate;
}
.z-pdp__buybox-body {
    transition: opacity .35s ease, transform .35s ease;
}
.z-pdp__buybox.is-order-active {
    padding-top: 0;
    border-top-color: transparent;
}
.z-pdp__buybox.is-order-active .z-pdp__buybox-intro,
.z-pdp__buybox.is-order-active .z-pdp__wa,
.z-pdp__buybox.is-order-active .z-pdp__alt-link {
    display: none;
}
.z-pdp__buybox.is-order-active .z-pdp-wizard {
    margin-top: 0;
}
.z-pdp__buybox.is-order-success .z-pdp__buybox-body {
    display: none;
}
.z-pdp__buybox.is-order-success {
    padding-top: 0;
    border-top-color: transparent;
    min-height: clamp(260px, 38vh, 340px);
}
.z-pdp__order-success {
    position: relative;
    inset: auto;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(260px, 38vh, 340px);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    border-radius: clamp(16px, 3vw, 22px);
    overflow: hidden;
}
.z-pdp__buybox.is-order-success .z-pdp__order-success {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.z-pdp__order-success[hidden] {
    display: none !important;
}
.z-pdp__buybox.is-order-success .z-pdp__order-success[hidden] {
    display: none !important;
}
.z-pdp__order-success__fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, var(--z-red) 0%, var(--z-red-hover) 48%, var(--z-red-deep) 100%);
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}
.z-pdp__buybox.is-order-success .z-pdp__order-success__fill {
    transform: scaleY(1);
}
.z-pdp__order-success__content {
    position: relative;
    z-index: 1;
    max-width: 28ch;
    padding: clamp(24px, 4vw, 36px);
    text-align: center;
    color: var(--z-white);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .45s ease .32s, transform .45s ease .32s;
}
.z-pdp__buybox.is-order-success .z-pdp__order-success__content {
    opacity: 1;
    transform: none;
}
.z-pdp__order-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .28);
}
.z-pdp__order-success__icon svg { display: block; }
.z-pdp__order-success__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
}
.z-pdp__order-success__text {
    font-size: 14px;
    line-height: 1.65;
    opacity: .92;
}

/* PDP order wizard */
.z-pdp-wizard {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 16px;
}
.z-pdp-wizard__head {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
}
.z-pdp-wizard__product {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--z-text);
    margin-bottom: 6px;
}
.z-pdp-wizard__total-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--z-text-soft);
}
.z-pdp-wizard__total-line strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--z-red);
    text-transform: none;
    letter-spacing: 0;
}
.z-pdp-wizard__progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
    padding: 0;
    list-style: none;
}
.z-pdp-wizard__progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    opacity: .45;
    transition: opacity .25s ease;
}
.z-pdp-wizard__progress-item.is-active { opacity: 1; }
.z-pdp-wizard__progress-item.is-complete { opacity: .72; }
.z-pdp-wizard__progress-num {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(20, 42, 79, .14);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--z-text-soft);
    background: var(--z-white);
    transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.z-pdp-wizard__progress-item.is-active .z-pdp-wizard__progress-num,
.z-pdp-wizard__progress-item.is-current .z-pdp-wizard__progress-num {
    border-color: var(--z-red);
    background: rgba(226, 107, 80, .1);
    color: var(--z-red);
}
.z-pdp-wizard__progress-item.is-complete .z-pdp-wizard__progress-num {
    border-color: var(--z-red);
    background: var(--z-red);
    color: var(--z-white);
}
.z-pdp-wizard__progress-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--z-text-soft);
    line-height: 1.2;
}
.z-pdp-wizard__panes {
    position: relative;
    min-height: clamp(160px, 28vw, 220px);
}
.z-pdp-wizard__pane {
    animation: zFormPanelIn .3s cubic-bezier(.22, 1, .36, 1);
}
.z-pdp-wizard__pane[hidden] {
    display: none !important;
}
.z-pdp-wizard__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(20, 42, 79, .08);
    background: var(--z-white);
    position: sticky;
    bottom: 0;
    z-index: 2;
}
.z-pdp-wizard__prev {
    justify-self: start;
    padding: 11px 18px;
    font-size: 10px;
}
.z-pdp-wizard__next,
.z-pdp-wizard__submit {
    justify-self: end;
    grid-column: 2;
    padding: 11px 22px;
    font-size: 10px;
}
.z-pdp-wizard__submit {
    width: 100%;
}
.z-pdp-wizard__nav [hidden] {
    display: none !important;
}
.z-pdp-wizard .form-feedback {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
}
.z-pdp-wizard .form-feedback.error { color: var(--z-red); }
.z-pdp-wizard .form-feedback.success { color: var(--z-red); }
@media (min-width: 1025px) {
    .z-pdp__buybox {
        border-top: none;
        padding-top: 0;
        border-left: 1px solid rgba(20, 42, 79, .08);
        padding-left: clamp(24px, 3vw, 40px);
    }
}
.z-pdp__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 0 0 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    border-radius: 0;
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--z-text-soft);
}
.z-pdp__total strong { font-size: 1.1rem; font-weight: 600; color: var(--z-red); text-transform: none; letter-spacing: 0; }
.z-variant-chips { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.z-variant-chip {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 3px;
    border: none;
    background: transparent;
    cursor: pointer;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: inherit;
    font-weight: inherit;
}
.z-variant-chip__swatch {
    display: block;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background-color: var(--swatch, #e8e3dc);
    border: 1px solid rgba(20, 42, 79, .14);
    box-sizing: border-box;
    transition: box-shadow .2s ease, transform .2s ease;
}
.z-variant-chip:hover .z-variant-chip__swatch { transform: scale(1.05); }
.z-variant-chip:has(input:checked) .z-variant-chip__swatch {
    box-shadow: 0 0 0 2px var(--z-white), 0 0 0 3px var(--z-red);
}
.z-variant-chip:has(input:focus-visible) .z-variant-chip__swatch {
    box-shadow: 0 0 0 2px var(--z-white), 0 0 0 3px var(--z-navy);
}
.z-variant-chip input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.z-variant-chip__label { display: none; }

/* About page */
.z-band {
    padding: clamp(56px, 8vw, 88px) 0;
}
.z-band--cream {
    background: var(--z-cream);
}

.page-about .z-about-hero {
    padding: calc(var(--header-offset) + clamp(28px, 5vw, 48px)) 0 clamp(20px, 3vw, 32px);
    background: var(--z-white);
    text-align: center;
}
.page-about .z-about-hero__inner {
    max-width: 720px;
    margin: 0 auto;
}
.page-about .z-about-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.35rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--z-text);
    margin: 8px 0 16px;
}
.page-about .z-about-hero__desc {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--z-text-soft);
    line-height: 1.7;
    max-width: 38rem;
    margin: 0 auto;
}

.page-about .z-about-intro {
    padding: clamp(24px, 4vw, 40px) 0 clamp(48px, 6vw, 72px);
    background: var(--z-white);
}
.page-about .z-about-intro__grid {
    display: grid;
    grid-template-columns: 1fr min(460px, 44%);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.page-about .z-about-intro__heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--z-text);
    max-width: 16ch;
}
.page-about .z-about-intro__copy .z-lead {
    margin-bottom: 16px;
}
.page-about .z-about-intro__copy p:not(.z-lead) {
    color: var(--z-text-soft);
    line-height: 1.75;
    max-width: 34rem;
}
.page-about .z-about-intro__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}
.page-about .z-about-intro__media {
    position: relative;
    margin: 0;
}
.page-about .z-about-intro__media::before {
    content: "";
    position: absolute;
    inset: 14px -14px -14px 14px;
    border: 1px solid rgba(226, 107, 80, .22);
    border-radius: var(--nav-bar-radius);
    pointer-events: none;
}
.page-about .z-about-intro__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--nav-bar-radius);
}

.page-about .z-stats--about {
    padding: clamp(28px, 4vw, 40px) 0;
    border-block: 1px solid rgba(20, 42, 79, .06);
    background: var(--z-white);
}
.page-about .z-stats--about .z-stats__item {
    position: relative;
    padding: 8px 12px;
}
.page-about .z-stats--about .z-stats__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18%;
    right: 0;
    width: 1px;
    height: 64%;
    background: rgba(20, 42, 79, .08);
}

.page-about .z-about-overview__grid {
    display: grid;
    grid-template-columns: 1fr min(440px, 42%);
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}
.page-about .z-about-overview__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 18ch;
}
.page-about .z-about-overview__lead {
    color: var(--z-text-soft);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 34rem;
}
.page-about .z-about-offerings {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.page-about .z-about-offerings li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--z-white);
    border: 1px solid rgba(20, 42, 79, .06);
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--z-text);
}
.page-about .z-about-offerings__icon {
    display: inline-flex;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--z-red);
}
.page-about .z-about-collage {
    display: grid;
    grid-template-columns: 1.05fr 0.9fr;
    gap: 14px;
    align-items: start;
}
.page-about .z-about-collage img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--nav-bar-radius);
    display: block;
}
.page-about .z-about-collage__primary img {
    aspect-ratio: 3/4;
}
.page-about .z-about-collage__secondary {
    margin-top: clamp(28px, 6vw, 48px);
}
.page-about .z-about-collage__secondary img {
    aspect-ratio: 4/5;
}

.page-about .z-about-journey {
    padding: clamp(56px, 8vw, 88px) 0;
    background: var(--z-white);
}
.page-about .z-about-journey__head {
    margin-bottom: clamp(28px, 4vw, 40px);
}
.page-about .z-about-journey__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    line-height: 1.2;
}
.page-about .z-about-journey .z-timeline__list {
    border-left: 2px solid rgba(226, 107, 80, .18);
    margin-left: clamp(28px, 4vw, 40px);
    padding-left: clamp(24px, 3vw, 32px);
}
.page-about .z-about-journey .z-timeline__row {
    position: relative;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 0 0 clamp(24px, 4vw, 36px);
    border-bottom: none;
}
.page-about .z-about-journey .z-timeline__row::before {
    content: "";
    position: absolute;
    left: calc(-1 * clamp(24px, 3vw, 32px) - 7px);
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--z-red);
    box-shadow: 0 0 0 4px var(--z-white), 0 0 0 5px rgba(226, 107, 80, .22);
}
.page-about .z-about-journey .z-timeline__row:last-child {
    padding-bottom: 0;
}
.page-about .z-about-journey .z-timeline__year {
    font-size: 1.1rem;
}

.page-about .z-about-values__head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 40px);
}
.page-about .z-about-values__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    line-height: 1.2;
}
.page-about .z-values-grid--about {
    gap: clamp(16px, 2vw, 20px);
}
.page-about .z-values-grid--about .z-values-card {
    background: var(--z-white);
    border-radius: var(--nav-bar-radius);
    overflow: hidden;
    border: 1px solid rgba(20, 42, 79, .06);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.page-about .z-values-card__media img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    margin: 0;
}
.page-about .z-values-card__body {
    padding: 16px 16px 18px;
    flex: 1;
}
.page-about .z-values-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 6px;
}
.page-about .z-values-card__body p {
    font-size: 13px;
    color: var(--z-text-soft);
    line-height: 1.55;
    margin: 0;
}

.page-about .z-cta--about {
    padding: clamp(56px, 8vw, 88px) 0;
    background: var(--z-white);
    border-top: 1px solid rgba(20, 42, 79, .06);
}
.page-about .z-cta--about .z-cta__inner h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.z-about-split {
    display: grid;
    grid-template-columns: 1fr min(480px, 46%);
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}
.z-about-split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.z-about-split__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 24px; }
.z-stats {
    padding: clamp(32px, 5vw, 48px) 0;
    border-block: 1px solid rgba(20, 42, 79, .06);
    background: var(--z-white);
}
.z-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.z-stats__item strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--z-red);
    margin-bottom: 6px;
}
.z-stats__item span { font-size: 13px; color: var(--z-text-soft); }
.z-video { padding: clamp(48px, 7vw, 80px) 0; background: var(--z-white); }
.z-video__inner { max-width: 960px; margin: 0 auto; text-align: center; }
.z-video__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--z-text);
    margin-bottom: 12px;
}
.z-video__desc { max-width: 36rem; margin: 0 auto 28px; color: var(--z-text-soft); line-height: 1.7; }
.z-video__frame {
    position: relative;
    aspect-ratio: 16/9;
    background: #0f1f3a;
    overflow: hidden;
    border-radius: 16px;
}
.z-video__frame video,
.z-video__frame iframe { width: 100%; height: 100%; border: 0; object-fit: cover; display: block; }
.z-video__placeholder { position: relative; width: 100%; height: 100%; }
.z-video__placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: .88; }
.z-video__cta {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 22px;
    background: rgba(254, 255, 255, .96);
    color: var(--z-text);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(20, 42, 79, .12);
}
.z-video__cta:hover { color: var(--z-red); border-color: var(--z-red); }

/* ─── INSTAGRAM MOSAIC ─── */
.z-ig {
    padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
    background: var(--z-cream);
}
.z-ig__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: clamp(32px, 4vw, 48px);
    flex-wrap: wrap;
}
.z-ig__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 8px 0 12px;
    color: var(--z-text);
    max-width: 18ch;
}
.z-ig__sub {
    max-width: 36rem;
    color: var(--z-text-soft);
    line-height: 1.7;
    font-size: 14px;
}
.z-ig__follow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--z-text);
    border-bottom: 1px solid rgba(20, 42, 79, .18);
    white-space: nowrap;
    transition: color .25s ease, border-color .25s ease;
}
.z-ig__follow:hover { color: var(--z-red); border-bottom-color: var(--z-red); }
.z-ig__follow-icon { display: inline-flex; color: var(--z-red); }

/* Mobile: horizontal scroll cards */
.z-ig__mosaic {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    padding-bottom: 6px;
    scrollbar-width: none;
}
.z-ig__mosaic::-webkit-scrollbar { display: none; }
.z-ig__cell {
    flex: 0 0 min(72vw, 280px);
    scroll-snap-align: center;
    display: block;
    text-decoration: none;
    min-width: 0;
}
.z-ig__frame {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    background: var(--z-white);
    transition: opacity .3s ease;
}
.z-ig__cell:hover .z-ig__frame { opacity: .9; }
.z-ig__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z-ig__reels-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: clamp(36px, 5vw, 52px);
    margin-bottom: 16px;
}
.z-ig__reels-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--z-text-soft);
}
.z-ig__reels {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
}
.z-ig__reels::-webkit-scrollbar { display: none; }
.z-ig__reel {
    flex: 0 0 clamp(132px, 28vw, 180px);
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}
.z-ig__reel-frame {
    position: relative;
    display: block;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    background: #0f1f3a;
}
.z-ig__reel-frame img,
.z-ig__reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.z-ig__reel-play {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(20, 42, 79, .28);
    color: #fff;
    cursor: pointer;
    transition: background .25s ease, opacity .25s ease;
}
.z-ig__reel-play:hover { background: rgba(20, 42, 79, .42); }
.z-ig__reel--video.is-playing .z-ig__reel-play {
    opacity: 0;
    pointer-events: none;
}

/* Tablet + desktop: clean 3-column grid */
@media (min-width: 769px) {
    .z-ig__mosaic {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-inline: 0;
        padding-inline: 0;
        overflow: visible;
    }
    .z-ig__cell {
        flex: none;
        scroll-snap-align: none;
    }
    .z-ig__reels {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
        overflow: visible;
    }
    .z-ig__reel {
        flex: none;
        min-width: 0;
    }
}

/* Large desktop: editorial hero + wide accent strip */
@media (min-width: 1100px) {
    .z-ig__mosaic {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto auto auto;
        align-items: stretch;
        gap: 16px;
    }
    .z-ig__cell--hero {
        grid-column: 1;
        grid-row: 1 / 3;
    }
    .z-ig__cell--hero .z-ig__frame {
        aspect-ratio: auto;
        height: 100%;
        min-height: 100%;
    }
    .z-ig__cell--accent {
        grid-column: 1 / -1;
    }
    .z-ig__cell--accent .z-ig__frame {
        aspect-ratio: 21 / 8;
        max-height: 300px;
    }
}

.z-about-features {
    display: grid;
    grid-template-columns: 1fr min(420px, 42%);
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}
.z-about-features__media { display: grid; gap: 12px; }
.z-about-features__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.z-checklist {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.z-checklist li {
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    font-size: 14px;
    color: var(--z-text-soft);
}
.z-timeline { padding: clamp(48px, 7vw, 80px) 0; background: var(--z-white); }
.z-timeline__heading { margin-bottom: 32px; }
.z-timeline__list { display: grid; gap: 0; }
.z-timeline__row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
}
.z-timeline__year {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--z-red);
}
.z-timeline__content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--z-text);
}
.z-timeline__content p { font-size: 14px; color: var(--z-text-soft); line-height: 1.65; }
.z-inner__title--center { text-align: center; margin-bottom: 32px; }
.z-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 24px);
}
.z-values-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; margin-bottom: 14px; }
.z-values-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 6px;
}
.z-values-card p { font-size: 13px; color: var(--z-text-soft); line-height: 1.55; }
.z-cta {
    padding: clamp(56px, 8vw, 88px) 0;
    background: var(--z-white);
    border-top: 1px solid rgba(20, 42, 79, .06);
}
.z-cta__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.z-cta__inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    margin-bottom: 12px;
}
.z-cta__inner p { color: var(--z-text-soft); margin-bottom: 24px; line-height: 1.65; }
.z-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center; }

.field-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--z-text-soft);
}
.z-meter-control {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    gap: 0;
    align-items: end;
    border-bottom: 1px solid rgba(20, 42, 79, .15);
}
.z-meter-control__btn {
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: var(--z-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}
.z-meter-control__btn:hover { color: var(--z-red); background: transparent; }
.z-meter-control input {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    border: none;
    background: transparent;
    padding: 8px 0;
}
.z-meter-presets { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 12px; }
.z-meter-presets__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--z-text-soft);
    margin-right: 0;
}
.z-meter-preset {
    padding: 0 0 2px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(20, 42, 79, .15);
    background: transparent;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--z-text-soft);
}
.z-meter-preset:hover,
.z-meter-preset.is-active {
    background: transparent;
    border-bottom-color: var(--z-red);
    color: var(--z-red);
}
.z-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--z-text-soft);
    cursor: pointer;
}
.z-check input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
.z-check__box {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(20, 42, 79, .22);
    border-radius: 2px;
    position: relative;
    transition: background .2s ease, border-color .2s ease;
}
.z-check input:checked + .z-check__box {
    background: var(--z-red);
    border-color: var(--z-red);
}
.z-check input:checked + .z-check__box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid var(--z-white);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}
.z-pdp__form label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--z-text-soft);
}
.z-pdp__form input,
.z-pdp__form textarea {
    width: 100%;
    padding: 8px 0 10px;
    border: none;
    border-bottom: 1px solid rgba(20, 42, 79, .15);
    border-radius: 0;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    transition: border-color .2s ease;
}
.z-pdp__form input:focus,
.z-pdp__form textarea:focus {
    outline: none;
    border-bottom-color: var(--z-red);
}
.z-pdp__form textarea { min-height: 72px; resize: vertical; }
.z-pdp__form .field { margin-bottom: 18px; }
.z-pdp__form .z-btn { margin-top: 8px; }
.z-pdp__wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
    padding: 12px 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--z-text);
    border-bottom: 1px solid rgba(20, 42, 79, .12);
    transition: color .2s ease, border-color .2s ease;
}
.z-pdp__wa:hover { color: var(--z-red); border-bottom-color: var(--z-red); }
.z-pdp__alt-link {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--z-text-soft);
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}
.z-pdp__alt-link:hover { color: var(--z-red); border-bottom-color: rgba(226, 107, 80, .35); }
.z-pdp-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 10px clamp(12px, 3vw, 24px) calc(10px + env(safe-area-inset-bottom));
    background: var(--z-white);
    border-top: 1px solid rgba(20, 42, 79, .08);
    box-shadow: none;
    transform: translateY(110%);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
@media (min-width: 1025px) {
    .z-pdp-sticky { display: none !important; }
}
.z-pdp-sticky.is-visible { transform: translateY(0); }
.z-pdp-sticky__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.z-pdp-sticky__meta { display: grid; gap: 2px; min-width: 0; }
.z-pdp-sticky__meta strong {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.z-pdp-sticky__meta span { font-size: 14px; font-weight: 600; color: var(--z-red); }
.z-pdp-sticky .z-btn { padding: 12px 18px; white-space: nowrap; }
.z-pdp__cat {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--z-red);
    margin-bottom: 6px;
}
.z-pdp__sku { font-size: 11px; color: var(--z-text-soft); margin-bottom: 10px; letter-spacing: .04em; }
.z-pdp__title {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin-bottom: 10px;
}
.z-pdp__excerpt { color: var(--z-text-soft); margin-bottom: 18px; line-height: 1.65; font-size: 14px; }
.z-pdp__price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
}
.z-pdp__price { font-size: 1.25rem; font-weight: 500; color: var(--z-red); }
.z-pdp__unit { font-size: 12px; color: var(--z-text-soft); }
.z-pdp__note { font-size: 12px; color: var(--z-text-soft); margin-bottom: 16px; }
.z-pdp__order {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4px;
}
.z-form-panel,
.z-inquiry-order .z-form-panel {
    overflow: hidden;
}
.z-form-panel[hidden],
.z-inquiry-order .z-form-panel[hidden] { display: none; }
.z-form-panel.is-open,
.z-inquiry-order .z-form-panel.is-open {
    animation: zFormPanelIn .35s cubic-bezier(.22, 1, .36, 1);
}
@keyframes zFormPanelIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.z-inquiry-order { display: flex; flex-direction: column; gap: 0; }
.z-inquiry-order .z-form-panel .z-form { margin-top: 18px; }
.z-pdp__order .z-form-panel .z-pdp__form { margin-top: 16px; }
.z-pdp__form { margin-top: 4px; }
.z-pdp__blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 48px);
    margin-bottom: clamp(40px, 6vw, 64px);
    padding-top: clamp(32px, 5vw, 48px);
    border-top: 1px solid rgba(20, 42, 79, .08);
}
.z-pdp__block {
    padding: 0;
    background: transparent;
    border-radius: 0;
}
.z-pdp__block h2 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--z-text-soft);
}
.prose { color: var(--z-text-soft); line-height: 1.75; font-size: 14px; }
.z-spec-table { width: 100%; border-collapse: collapse; }
.z-spec-table th,
.z-spec-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    text-align: left;
    font-size: 13px;
}
.z-spec-table th {
    color: var(--z-text-soft);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    width: 42%;
}
.z-pdp__related {
    padding-top: clamp(32px, 5vw, 48px);
    border-top: 1px solid rgba(20, 42, 79, .08);
}
.z-pdp__related-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 24px;
}

.z-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.z-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}
.z-contact-cta {
    padding: clamp(40px, 6vw, 72px) 0;
    background: linear-gradient(135deg, var(--z-navy) 0%, #1a3358 100%);
    color: var(--z-white);
}
.z-contact-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.z-contact-cta__title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 400;
    margin: 8px 0 10px;
    color: var(--z-white);
}
.z-contact-cta__phone a {
    color: var(--z-terracotta);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    text-decoration: none;
}
.z-contact-cta__phone a:hover { text-decoration: underline; }
.z-contact-cta__showrooms {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255,255,255,.72);
}
.z-contact-cta__showrooms a {
    color: var(--z-terracotta);
    text-decoration: none;
}
.z-contact-cta__showrooms a:hover { text-decoration: underline; }
.z-contact-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.z-contact-cta .z-eyebrow { color: rgba(255,255,255,.55); }
.z-contact-cta--compact { padding: 32px 0; }

.z-showrooms {
    margin-bottom: 28px;
}
.z-showrooms__heading {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0 0 14px;
    color: var(--z-navy);
}
.z-showrooms__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.z-showrooms__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(20, 42, 79, .1);
    border-radius: 12px;
    background: var(--z-white);
}
.z-showrooms__city {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--z-terracotta);
    margin: 0 0 4px;
}
.z-showrooms__title {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 4px;
    color: var(--z-navy);
}
.z-showrooms__address {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: var(--z-text-soft);
}
.z-showrooms__map {
    flex-shrink: 0;
    white-space: nowrap;
}
.z-showrooms--compact {
    margin-bottom: 0;
}
.z-showrooms--compact .z-showrooms__list {
    gap: 10px;
}
.z-showrooms--compact .z-showrooms__item {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 14px;
    background: transparent;
    border-color: rgba(255, 255, 255, .12);
}
.z-showrooms--compact .z-showrooms__city,
.z-showrooms--compact .z-showrooms__title,
.z-showrooms--compact .z-showrooms__address {
    color: rgba(255, 255, 255, .88);
}
.z-showrooms--compact .z-showrooms__city {
    color: var(--z-terracotta);
}
.z-showrooms--compact .z-showrooms__title {
    font-size: 14px;
    line-height: 1.45;
}
.z-showrooms--compact .z-showrooms__map {
    align-self: flex-start;
    margin-top: 10px;
}
.z-showrooms--compact .z-showrooms__map--footer {
    color: var(--z-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .32);
    box-shadow: none;
}
.z-showrooms--compact .z-showrooms__map--footer:hover {
    color: var(--z-terracotta);
    background: rgba(255, 255, 255, .06);
    border-color: var(--z-terracotta);
    transform: none;
    box-shadow: none;
}
.z-showrooms--compact .z-showrooms__map--footer .z-icon {
    color: currentColor;
}

.z-catalog-lead {
    margin-top: 28px;
    padding: 20px 22px;
    border: 1px solid rgba(20, 42, 79, .1);
    border-radius: 12px;
    background: var(--z-cream);
}
.z-catalog-lead__intro {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--z-text-soft);
}
.z-catalog-lead__trigger { margin-top: 14px; }
.z-catalog-lead__panel { margin-top: 16px; }
.z-catalog-lead--compact {
    margin-top: 0;
    padding: 16px 18px;
}

.z-feature-list li {
    padding: 12px 0 12px 22px;
    border-bottom: 1px solid var(--z-cream-2);
    color: var(--z-text-soft);
    position: relative;
    font-size: 14px;
}
.z-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--z-red);
    font-weight: 700;
}
.z-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 24px;
}
.info-tile {
    padding: 14px 0;
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid rgba(20, 42, 79, .08);
    transition: none;
}
.info-tile.is-visible:hover { transform: none; }
.info-tile h3 {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--z-text-soft);
    margin-bottom: 6px;
}
.info-tile p { font-size: 13px; color: var(--z-text-soft); line-height: 1.55; }

.form-stack .field,
.z-form .field { margin-bottom: 18px; }
.form-grid {
    display: grid;
    gap: 14px;
}
.form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 640px) {
    .form-grid--2 { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .content-split,
    .catalog-split,
    .z-catalog__grid { grid-template-columns: 1fr; }
    .z-form-aside {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(20, 42, 79, .08);
        padding-top: 28px;
        margin-top: 8px;
    }
}

@media (max-width: 1200px) {
    .z-nav { gap: 0; }
    .z-nav__link { padding: 8px 7px; font-size: 9px; letter-spacing: .1em; }
    .z-header__actions { gap: 10px; }
}

.z-icon-btn--mobile { display: none; }
.z-lang-btn--mobile { display: none; }

@media (max-width: 1024px) {
    html {
        height: auto;
        min-height: 100%;
    }
    body,
    .site-wrapper {
        min-height: 0;
    }
    .site-frame {
        min-height: 0;
    }
    body.page-home .z-hero-frame {
        min-height: clamp(520px, 100svh, 820px);
    }
    .page-about .z-about-intro__grid,
    .page-about .z-about-overview__grid {
        grid-template-columns: 1fr;
    }
    .page-about .z-about-intro__heading {
        max-width: none;
    }
    .page-about .z-about-intro__media {
        order: -1;
        max-width: min(420px, 100%);
        margin-inline: auto;
    }
    .page-about .z-about-collage {
        max-width: min(480px, 100%);
        margin-inline: auto;
    }
    .page-about .z-stats--about .z-stats__item:not(:last-child)::after {
        display: none;
    }
    .z-about-split,
    .z-about-features { grid-template-columns: 1fr; }
    .z-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .z-values-grid { grid-template-columns: repeat(2, 1fr); }
    .z-hero-frame__content {
        grid-template-columns: 1fr;
        padding-bottom: clamp(72px, 11vw, 96px);
    }
    .z-hero-actions {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }
    .z-hero-copy__lead--full { display: none; }
    .z-hero-copy__lead--short { display: block; }
    .z-hero-scroll { bottom: 10px; }
    .z-pdp__buybox {
        position: static;
        border-top: none;
        padding-left: 0;
        padding-top: 0;
    }
    .z-pdp {
        padding-top: calc(var(--header-offset) + 8px);
        padding-bottom: calc(88px + env(safe-area-inset-bottom));
    }
    .z-pdp .breadcrumb { display: none; }
    .z-pdp__grid { gap: 20px; }
    .z-service-grid { grid-template-columns: repeat(2, 1fr); }
    .z-featured-card { grid-template-columns: 1fr; }
    .z-quote__inner { grid-template-columns: 1fr; }
    .z-quote__visuals {
        min-height: clamp(240px, 52vw, 320px);
        max-width: min(420px, 100%);
        margin: 0 auto 32px;
        order: -1;
    }
    .z-quote__text {
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }
    .z-social__inner { grid-template-columns: 1fr; }
    .z-footer__grid { grid-template-columns: 1fr 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .content-split { grid-template-columns: 1fr; }
    .z-pdp__grid,
    .z-pdp__blocks { grid-template-columns: 1fr; }
    .z-contact-grid { grid-template-columns: 1fr; }
    .z-showrooms__item { flex-direction: column; align-items: stretch; }
    .z-showrooms__map { align-self: flex-start; }
    .z-contact-cta__inner { flex-direction: column; align-items: flex-start; }
    .z-header__inner { grid-template-columns: 1fr auto; }
    .z-burger { display: inline-flex; }
    .hide-mobile { display: none !important; }
    .z-icon-btn--mobile,
    .z-lang-btn--mobile { display: inline-flex; width: 34px; height: 34px; }
}

@media (max-width: 768px) {
    :root {
        --header-h: 52px;
        --nav-float-gap: 10px;
        --header-top: calc(var(--safe-top) + 10px);
    }
    input:not([type="checkbox"]):not([type="radio"]),
    select,
    textarea {
        font-size: 16px;
    }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .page-about .z-about-offerings { grid-template-columns: 1fr; }
    .page-about .z-about-collage { grid-template-columns: 1fr; }
    .page-about .z-about-collage__secondary { margin-top: 0; }
    .z-stats__grid,
    .z-values-grid { grid-template-columns: 1fr 1fr; }
    .z-timeline__row { grid-template-columns: 56px 1fr; gap: 16px; }
    .z-hero-frame { min-height: clamp(520px, 92svh, 680px); }
    .z-hero-slideshow__dots { top: calc(var(--header-offset) + 8px); }
    .z-hero-display__word { font-size: clamp(2.8rem, 14vw, 4.5rem); }
    .z-hero-scroll { bottom: 8px; }
    .z-hero-shortcuts {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
    }
    .z-hero-shortcut { min-height: 68px; padding: 8px 4px; }
    .z-hero-shortcut__label {
        font-size: 7px;
        letter-spacing: .05em;
        line-height: 1.15;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .z-hero-shortcut__icon {
        width: 34px;
        height: 34px;
    }
    .z-services__head { flex-direction: column; align-items: flex-start; }
    .z-footer__grid { grid-template-columns: 1fr; }
    .z-pdp-sticky { display: block; }
}

@media (max-width: 520px) {
    .z-service-grid { grid-template-columns: 1fr; }
    .step-grid { grid-template-columns: 1fr; }
}
