/* Base */
:root {
    --aluvi-green: #76b828;
    --aluvi-green-dark: #5f9720;
}

body {
    font-family: "Manrope", system-ui, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, .nav, .navbar-nav, .nav-link, .btn {
    font-family: "Jost", system-ui, sans-serif;
}

a {
    color: var(--aluvi-green);
    text-decoration-thickness: 1px;
}

a:hover {
    color: var(--aluvi-green-dark);
}

/* Layout */
.site-main {
    flex: 1;
}

.page-section {
    min-height: 40vh;
}

.page-title {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #495057;
    text-decoration: underline;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Header */
.site-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.site-header.is-scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.site-logo {
    display: block;
    height: 40px;
    width: auto;
    max-width: 100%;
}

.dev-preview-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    font-family: "Jost", system-ui, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.2;
    color: #5c4a00;
    background-color: #f5e6a3;
    border: 1px solid #e0c86a;
    border-radius: 0.25rem;
    white-space: nowrap;
    vertical-align: middle;
}

.site-header .navbar-nav > .nav-item > .nav-link {
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    font-weight: 600;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background-image: linear-gradient(var(--aluvi-green), var(--aluvi-green));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 2px;
    transition: background-size 0.3s ease;
}

@media (min-width: 992px) {
    .site-header .navbar-nav {
        gap: 0 0.75rem;
    }

    .site-header .navbar-nav > .nav-item > .nav-link {
        padding-left: 1.3rem;
        padding-right: 1.3rem;
    }
}

.site-header .navbar-nav > .nav-item > .nav-link:not(.disabled):hover,
.site-header .navbar-nav > .nav-item > .nav-link:not(.disabled).active {
    color: rgba(0, 0, 0, 0.85);
    background-size: 100% 2px;
}

.site-header .nav-link.active {
    font-weight: 600;
}

.site-header .nav-link.disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.site-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1060;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-nav-toggle__icon {
    display: block;
    width: 36px;
    height: 27px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
}

.site-nav-toggle__icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.site-nav-toggle__icon span:nth-child(1) {
    top: 0;
    transform-origin: left center;
}

.site-nav-toggle__icon span:nth-child(2) {
    top: 11px;
    transform-origin: left center;
}

.site-nav-toggle__icon span:nth-child(3) {
    top: 22px;
    transform-origin: left center;
}

.site-nav-toggle__icon.open span:nth-child(1) {
    transform: rotate(45deg);
    top: -2px;
    left: 5px;
}

.site-nav-toggle__icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.site-nav-toggle__icon.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 24px;
    left: 5px;
}

.site-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

body.site-nav-open {
    overflow: hidden;
}

@media (min-width: 992px) {
    .site-nav-panel {
        display: flex;
        flex-basis: auto;
        flex-grow: 1;
        align-items: center;
        justify-content: flex-end;
    }

    .site-nav-backdrop {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .site-nav-panel {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1045;
        pointer-events: none;
        width: min(20rem, 88vw);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 5rem 1.5rem 2rem;
        background-color: #fff;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        visibility: hidden;
    }

    .site-nav-panel.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav-panel .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        margin: 0;
        width: 100%;
    }

    .site-nav-panel .navbar-nav > .nav-item > .nav-link {
        padding-left: 0;
        padding-right: 0;
        font-size: 1.3rem;
        background-image: none;
    }

    .site-nav-panel .navbar-nav > .nav-item > .nav-link:not(.disabled):hover,
    .site-nav-panel .navbar-nav > .nav-item > .nav-link:not(.disabled).active {
        background-size: 0;
    }

    .site-nav-panel .mega-menu .dropdown-menu {
        position: static !important;
        transform: none !important;
        display: none;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
    }

    .site-nav-panel .site-nav-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        display: none;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        border: 0;
        box-shadow: none;
        padding: 0 0 0 0.5rem;
        --bs-dropdown-border-width: 0;
        --bs-dropdown-border-color: transparent;
        --bs-dropdown-link-hover-bg: transparent;
        --bs-dropdown-link-active-bg: transparent;
    }

    .site-nav-panel .site-nav-dropdown .dropdown-item {
        padding-left: 0;
        padding-right: 0;
    }

    .site-nav-panel .mega-menu.show .dropdown-menu,
    .site-nav-panel .mega-menu .dropdown-menu.show,
    .site-nav-panel .site-nav-dropdown.show .dropdown-menu,
    .site-nav-panel .site-nav-dropdown .dropdown-menu.show {
        display: block;
    }

    .site-nav-panel .mega-menu__panel {
        min-width: 0;
        box-shadow: none;
        padding: 0 0 0 0.5rem !important;
    }
}

/* Footer */
.site-footer {
    background-color: #f8f9fa;
}

.site-footer a {
    color: #6c757d;
    text-decoration: none;
}

.site-footer a:hover {
    color: #495057;
    text-decoration: underline;
}

.footer-cookie-settings {
    position: relative;
    z-index: 1060;
    padding: 0.35rem 0;
    border: 0;
    background: none;
    color: #6c757d;
    font: inherit;
    line-height: inherit;
    text-align: inherit;
    cursor: pointer;
}

.footer-cookie-settings:hover {
    color: #495057;
    text-decoration: underline;
}

.footer-cookie-settings:focus-visible {
    outline: 2px solid var(--aluvi-green);
    outline-offset: 3px;
}

.cookie-consent[hidden],
#product-compare-bar[hidden] {
    display: none !important;
    pointer-events: none !important;
}

.cookie-consent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1080;
    padding-bottom: env(safe-area-inset-bottom);
    background: #3c4044;
    box-shadow: 0 -0.35rem 1.25rem rgba(0, 0, 0, 0.22);
}

.cookie-consent__panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1.75rem;
    background: #3c4044;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .cookie-consent__panel {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .cookie-consent__panel {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .cookie-consent__panel {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .cookie-consent__panel {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .cookie-consent__panel {
        max-width: 1320px;
    }
}

.cookie-consent__copy {
    flex: 1 1 18rem;
    min-width: 0;
}

.cookie-consent__title {
    margin: 0 0 0.25rem;
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.cookie-consent__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.925rem;
    line-height: 1.45;
}

.cookie-consent__actions {
    display: flex;
    flex: 1 1 16rem;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
}

.cookie-consent__btn {
    flex: 1 1 12rem;
    align-self: stretch;
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    border: 1px solid #222;
    background: #fff;
    color: #222;
    font-family: "Jost", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
}

.cookie-consent__btn:hover {
    background: #f3f4f5;
}

.cookie-consent__btn--accept {
    border-color: var(--aluvi-green);
    background: var(--aluvi-green);
    color: #fff;
}

.cookie-consent__btn--accept:hover {
    border-color: var(--aluvi-green-dark);
    background: var(--aluvi-green-dark);
    color: #fff;
}

.cookie-consent__btn:focus-visible {
    outline: 2px solid var(--aluvi-green);
    outline-offset: 3px;
}

body:has(.cookie-consent:not([hidden])) {
    padding-bottom: 12rem;
}

body:has(.cookie-consent:not([hidden])) .product-compare-bar {
    bottom: 11rem;
}

@media (max-width: 575.98px) {
    .cookie-consent__panel {
        padding: 1.25rem;
    }

    .cookie-consent__actions {
        flex: 1 1 auto;
        flex-direction: column;
    }

    .cookie-consent__btn {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* Homepage */
.home-page .home-hero--image-only {
    min-height: 0;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    aspect-ratio: 1 / 1;
    align-items: stretch;
    color: inherit;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

@media (min-width: 768px) {
    .home-page .home-hero--image-only {
        width: min(1500px, calc(100% - clamp(3rem, 8vw, 8rem)));
        max-width: 1500px;
        margin: clamp(1.5rem, 2.5vw, 2.25rem) auto 0;
        aspect-ratio: 2.1 / 1;
    }
}

.home-hero__media {
    z-index: 0;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.home-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.home-hero__slide picture,
.home-hero__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero__pager {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 1.15rem;
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    pointer-events: none;
}

.home-hero__dot {
    pointer-events: auto;
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    cursor: pointer;
}

.home-hero__dot.is-active {
    background: #fff;
}

.home-hero__dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.home-hero--slider {
    touch-action: pan-y;
}

.home-hero__nav {
    display: none;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .home-hero__nav {
        position: absolute;
        z-index: 4;
        pointer-events: auto;
        top: 0;
        bottom: 0;
        width: 28%;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
        color: #fff;
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.22s ease;
    }

    .home-hero__nav--prev {
        left: 0;
        justify-content: flex-start;
        padding-left: clamp(0.85rem, 2vw, 1.75rem);
    }

    .home-hero__nav--next {
        right: 0;
        justify-content: flex-end;
        padding-right: clamp(0.85rem, 2vw, 1.75rem);
    }

    .home-hero__nav:hover,
    .home-hero__nav:focus-visible {
        opacity: 1;
    }

    .home-hero__nav svg {
        width: 2.35rem;
        height: 2.35rem;
        filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.45));
    }

    .home-hero__nav:focus-visible {
        outline: 2px solid #fff;
        outline-offset: -6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__slide {
        transition: none;
    }
}

.home-page .home-intro {
    background-color: #fff;
    padding-top: 2.75rem;
}

@media (min-width: 768px) {
    .home-page .home-intro {
        padding-top: 4rem;
    }
}

.home-intro__layout {
    display: grid;
    gap: clamp(1.75rem, 4vw, 4.5rem);
    align-items: start;
}

@media (min-width: 992px) {
    .home-intro__layout {
        grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
        align-items: start;
    }
}

.home-intro__title {
    margin: 0;
    max-width: 12em;
    font-family: "Jost", system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: var(--about-ink);
    font-size: clamp(2.05rem, 4.6vw, 4.5rem);
}

.home-intro__copy-col .about-prose {
    max-width: 34rem;
}

.home-intro__note {
    margin: 1.35rem 0 0;
    font-family: "Jost", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--about-muted);
}

.home-quality {
    border-top: 1px solid var(--about-line);
}

.home-quality__inner {
    max-width: 42rem;
}

.home-solutions__grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .home-solutions__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: minmax(11.5rem, auto);
    }

    .home-solutions__item--1 {
        grid-column: 1 / span 4;
        grid-row: 1 / span 2;
    }

    .home-solutions__item--2 {
        grid-column: 5 / span 2;
        grid-row: 1;
    }

    .home-solutions__item--3 {
        grid-column: 5 / span 2;
        grid-row: 2;
    }

    .home-solutions__item--4,
    .home-solutions__item--5,
    .home-solutions__item--6 {
        aspect-ratio: 1 / 1;
        min-height: 0;
        width: 100%;
        align-self: start;
    }

    .home-solutions__item--4 {
        grid-column: 1 / span 2;
    }

    .home-solutions__item--5 {
        grid-column: 3 / span 2;
    }

    .home-solutions__item--6 {
        grid-column: 5 / span 2;
    }
}

.home-solutions__item {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 14rem;
    background-color: var(--about-surface);
    color: inherit;
    text-decoration: none;
}

.home-solutions__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.45s ease;
}

@media (min-width: 768px) {
    .home-solutions__item img {
        position: absolute;
        inset: 0;
        aspect-ratio: auto;
    }
}

.home-solutions__item:hover img {
    transform: scale(1.03);
}

.home-solutions__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.5rem 1.15rem 1.1rem;
    background: linear-gradient(0deg, rgba(12, 16, 13, 0.78) 0%, rgba(12, 16, 13, 0.08) 100%);
    color: #fff;
}

.home-solutions__title {
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.home-solutions__teaser {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 26rem;
}

.home-solutions__title::after {
    content: " →";
    color: var(--aluvi-green);
    font-weight: 500;
}

.home-refs__mosaic {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .home-refs__mosaic {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: minmax(11rem, auto);
    }

    .home-refs__item--1 {
        grid-column: 1 / span 4;
        grid-row: 1 / span 2;
    }

    .home-refs__item--2 {
        grid-column: 5 / span 2;
        grid-row: 1 / span 2;
    }

    .home-refs__item--3 {
        grid-column: 1 / span 2;
        grid-row: 3 / span 2;
    }

    .home-refs__item--4 {
        grid-column: 3 / span 2;
        grid-row: 3 / span 2;
    }

    .home-refs__item--5 {
        grid-column: 5 / span 2;
        grid-row: 3 / span 2;
    }
}

.home-system__intro {
    max-width: 40rem;
    margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.home-system__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (min-width: 992px) {
    .home-system__list {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.home-system__item {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.15rem 0.85rem 1.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

@media (min-width: 992px) {
    .home-system__item {
        padding: 1.35rem 1.1rem 1.35rem 0;
        border-bottom: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    .home-system__item:last-child {
        border-right: 0;
        padding-right: 0;
    }
}

.home-system__num {
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--aluvi-green);
}

.home-system__label {
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.home-system__highlight {
    max-width: 36rem;
    margin-top: 2rem;
}

.home-process__flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.home-process__flow li {
    position: relative;
    padding: 1.1rem 0 1.1rem 0;
    border-bottom: 1px solid var(--about-line);
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--about-ink);
}

.home-process__flow li:first-child {
    border-top: 1px solid var(--about-line);
}

.home-process__flow li::after {
    content: "↓";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--aluvi-green);
    font-weight: 500;
}

.home-process__flow li:last-child::after {
    content: none;
}

@media (min-width: 992px) {
    .home-process__flow {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        border-top: 1px solid var(--about-line);
        border-bottom: 1px solid var(--about-line);
    }

    .home-process__flow li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.2rem;
        flex: 1 1 0;
        padding: 1.5rem 1rem;
        border: 0;
        border-right: 1px solid var(--about-line);
        text-align: center;
    }

    .home-process__flow li:first-child {
        border-top: 0;
    }

    .home-process__flow li:last-child {
        border-right: 0;
    }

    .home-process__flow li::after {
        content: "→";
        position: static;
        top: auto;
        right: auto;
        transform: none;
    }
}

.home-closing__note {
    margin: 1.35rem 0 0;
    max-width: 34rem;
}

.home-closing__note a {
    color: var(--about-muted);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.home-closing__note a:hover {
    color: var(--about-ink);
}

.about-process {
    scroll-margin-top: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
    .home-solutions__item img {
        transition: none;
    }

    .home-solutions__item:hover img {
        transform: none;
    }
}

/* Products */
/* References */

/* Pages (contact, service) */
.doc-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.doc-lead {
    font-size: 1.125rem;
    line-height: 1.6;
}

.doc-hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid #8b959f;
}

.doc-list,
.doc-sublist {
    padding-left: 1.25rem;
}

.doc-list li,
.doc-sublist li {
    margin-bottom: 0.5rem;
}

.doc-sublist {
    margin-top: 0.5rem;
}

.doc-olist {
    padding-left: 1.25rem;
}

.doc-olist li {
    margin-bottom: 0.5rem;
}

.doc-footer-tip {
    font-size: 0.95rem;
}

.contact-header {
    max-width: 38rem;
    margin-bottom: 2rem;
}

.contact-lead {
    margin: 0.75rem 0 0;
    font-size: 1.125rem;
    line-height: 1.55;
    color: #5c6560;
}

.contact-actions {
    margin-bottom: 3rem;
}

.contact-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: 1.15rem 1.25rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    color: inherit;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.contact-action:hover,
.contact-action:focus-visible {
    color: inherit;
    border-color: #ced4da;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.contact-action__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: rgba(118, 184, 40, 0.12);
    color: var(--aluvi-green);
    font-size: 1.2rem;
}

.contact-action__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-action__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6c757d;
}

.contact-action__value {
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.contact-section-title {
    /*font-size: 1.35rem;*/
    font-weight: 600;
    margin: 0 0 1.25rem;
}

.contact-place {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    background-color: #fff;
}

.contact-place__body {
    padding: 1.35rem 1.4rem 1.15rem;
}

.contact-place__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.contact-place__title .bi {
    color: var(--aluvi-green);
    font-size: 1.05rem;
}

.contact-place address {
    margin-bottom: 0.75rem;
    color: #5c6560;
}

.contact-place__map-link {
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-place__map-link:hover {
    text-decoration: underline;
}

.contact-place__map {
    margin-top: auto;
    border-top: 1px solid #e9ecef;
}

.contact-place__map iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.contact-legal {
    background-color: #eef6e5;
    border-top: 1px solid rgba(28, 33, 30, 0.08);
    padding: 3rem 0 4rem;
}

.contact-legal__label {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--aluvi-green);
}

.contact-legal address,
.contact-legal p {
    color: #1c211e;
}

/* Service cards */
.service-card {
    border: 1px solid #e9ecef;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    color: var(--bs-body-color);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08);
    border-color: #ced4da;
    color: var(--bs-body-color);
}

.service-card__icon {
    font-size: 1.75rem;
    color: var(--aluvi-green);
}

.service-card:hover .service-card__icon {
    color: var(--aluvi-green-dark);
}

.service-card__cta {
    font-weight: 500;
    color: var(--aluvi-green);
    font-size: 0.9rem;
}

.service-card:hover .service-card__cta {
    color: var(--aluvi-green-dark);
}

/* 404 */
.page-404__icon {
    font-size: 4rem;
    color: #adb5bd;
    line-height: 1;
}

/* Products */
.page-intro {
    padding-right: 33%;
    font-size: 1.2rem;
    line-height: 1.5;
    padding-bottom: 30px;
}

.product-card {
    position: relative;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
}

.product-card__image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: #f1f3f5;
    overflow: hidden;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 2rem;
}

.product-card__link:hover .card-title {
    color: var(--aluvi-green-dark);
}

.product-section__header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 0.75rem;
}

.product-detail__featured {
    margin-bottom: 3rem;
}

.product-detail .col-lg-8 > section {
    margin-bottom: 0.75rem;
}

.product-detail__compare {
    margin-bottom: 6rem;
}

.product-detail__gallery {
    margin-top: 3rem;
}

.product-detail__related-references {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.product-detail__body h2 {
    margin-top: 2.75rem;
    margin-bottom: 0.75rem;
}

.product-detail__body h2:first-child {
    margin-top: 0;
}

.product-detail__body h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.product-detail__body p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.product-detail__body ul,
.product-detail__body ol {
    margin-bottom: 1rem;
    padding-left: 2.5rem;
}

.product-detail__body li {
    margin-bottom: 0.55rem;
    line-height: 1.7;
}

.product-detail__body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
}

.product-detail__aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 992px) {
    .product-detail__aside {
        position: sticky;
        top: 5.5rem;
    }
}

.product-detail__cta {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.25rem;
    border: 0;
    border-radius: 0.5rem;
    background-color: var(--aluvi-green);
    color: #fff;
    font-family: "Jost", system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
}

.product-detail__cta:hover,
.product-detail__cta:focus-visible {
    background-color: var(--aluvi-green-dark);
    color: #fff;
}

.product-detail__cta:focus-visible {
    outline: 2px solid var(--aluvi-green);
    outline-offset: 3px;
}

.product-sidebar {
    padding: 1.25rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
}

.product-sidebar--specs {
    background-color: rgba(118, 184, 40, 0.12);
}

.product-sidebar-specs {
    margin: 0;
}

.product-sidebar-specs__row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    align-items: baseline;
}

.product-sidebar-specs__row + .product-sidebar-specs__row {
    margin-top: 0.55rem;
}

.product-sidebar-specs__row dt {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
}

.product-sidebar-specs__row dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.product-inquiry-modal__dialog {
    --bs-modal-width: 40rem;
}

.product-inquiry-modal {
    padding: 2rem 1.75rem 2.25rem;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.12);
}

.product-inquiry-modal .modal-header,
.product-inquiry-modal .modal-body {
    padding: 0;
}

.product-inquiry-modal .modal-header {
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.product-inquiry-modal .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    padding-right: 1.75rem;
}

.product-inquiry-modal .btn-close {
    margin: 0.15rem -0.15rem 0 0;
}

.product-inquiry-modal .modal-body p {
    margin-bottom: 1.5rem;
}

.product-inquiry-modal__contacts {
    margin-bottom: 1.5rem;
}

.product-inquiry-modal__contacts li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.product-inquiry-modal__contacts i {
    color: var(--aluvi-green);
}

.product-inquiry-modal__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 0.5rem;
    background-color: var(--aluvi-green);
    border-color: var(--aluvi-green);
    color: #fff;
    font-weight: 600;
}

.product-inquiry-modal__link:hover,
.product-inquiry-modal__link:focus-visible {
    background-color: var(--aluvi-green-dark);
    border-color: var(--aluvi-green-dark);
    color: #fff;
}

@media (min-width: 576px) {
    .product-inquiry-modal {
        padding: 3.25rem 3.75rem 3.5rem;
    }

    .product-inquiry-modal .modal-header {
        margin-bottom: 1.5rem;
    }

    .product-inquiry-modal .modal-title {
        font-size: 1.7rem;
    }

    .product-inquiry-modal .modal-body p {
        margin-bottom: 1.75rem;
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .product-inquiry-modal__contacts {
        margin-bottom: 2rem;
    }

    .product-inquiry-modal__link {
        min-height: 2.75rem;
        padding: 0.7rem 1.45rem;
    }
}

.product-sidebar__item + .product-sidebar__item {
    margin-top: 0.5rem;
}

.product-sidebar__link {
    color: #6c757d;
    text-decoration: none;
    font-weight: 700;
}

.product-sidebar__link:hover {
    color: #495057;
    text-decoration: underline;
}

/* Product decision blocks */
.product-schuco {
    --product-ink: #1c211e;
    --product-muted: #5c6560;
    padding: clamp(3rem, 7vw, 5.5rem) 0;
    background-color: #f4f5f2;
}

.product-schuco__grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.product-schuco__grid--text {
    max-width: 42rem;
}

@media (min-width: 992px) {
    .product-schuco__grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .product-schuco__grid--text {
        grid-template-columns: minmax(0, 1fr);
    }
}

.product-schuco__media {
    margin: 0;
}

.product-schuco__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background-color: #fff;
}

.product-schuco__title {
    margin: 0 0 1rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--product-ink);
    font-size: clamp(1.6rem, 2.6vw, 2.25rem);
}

.product-schuco__copy p {
    margin: 0 0 1.25rem;
    max-width: 38rem;
    color: var(--product-muted);
    line-height: 1.7;
}

.product-schuco__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: "Jost", system-ui, sans-serif;
    font-weight: 600;
    color: var(--aluvi-green-dark);
    text-decoration: none;
}

.product-schuco__link::after {
    content: "→";
}

.product-schuco__link:hover,
.product-schuco__link:focus-visible {
    color: var(--aluvi-green);
}

.product-schuco__link:focus-visible {
    outline: 2px solid var(--aluvi-green);
    outline-offset: 3px;
}

.product-offer {
    background-color: #151916;
    color: #e8ebe6;
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.product-offer__eyebrow {
    margin: 0 0 0.85rem;
    font-family: "Jost", system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aluvi-green);
}

.product-offer__title {
    margin: 0 0 1.25rem;
    max-width: 18em;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.product-offer__copy {
    max-width: 40rem;
    color: #a7b0a8;
}

.product-offer__copy p {
    margin: 0 0 1rem;
    line-height: 1.7;
}

.product-offer__copy p:last-child {
    margin-bottom: 0;
}

.product-offer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.75rem;
    min-height: 2.75rem;
    padding: 0.7rem 1.25rem;
    border: 0;
    background-color: var(--aluvi-green);
    color: #fff;
    font-family: "Jost", system-ui, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
}

.product-offer__cta:hover,
.product-offer__cta:focus-visible {
    background-color: var(--aluvi-green-dark);
    color: #fff;
}

.product-offer__cta:focus-visible {
    outline: 2px solid var(--aluvi-green);
    outline-offset: 3px;
}

@media (max-width: 575.98px) {
    .product-offer__cta {
        width: 100%;
    }
}

.product-sidebar__current {
    font-weight: 600;
    color: #1a1a1a;
}

.product-card__compare {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
}

.product-card__compare-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}

.product-card__hover-specs {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, rgb(150 255 0 / 90%) 0%, rgb(83 148 47 / 90%) 100%);
    color: #000000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    overflow: hidden;
    z-index: 2;
}

.product-card__spec-list {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 1.25rem;
    row-gap: 0.55rem;
    justify-content: center;
    align-content: center;
    align-items: end;
}

.product-card__spec-row {
    display: contents;
}

.product-card__spec-row dt {
    margin: 0;
    text-align: right;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.product-card__spec-row dd {
    margin: 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

@media (hover: hover) {
    .product-card__image-wrap--has-hover:hover .product-card__hover-specs,
    .product-card__image-wrap--has-hover:focus-within .product-card__hover-specs {
        opacity: 1;
        visibility: visible;
    }
}

@media (hover: none), (max-width: 767.98px) {
    .product-card__hover-specs {
        display: none;
    }
}

.product-detail__specs {
    padding: 1.25rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
}

.product-spec-table {
    margin: 0;
}

.product-spec-table__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-spec-table__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.product-spec-table__label {
    margin: 0;
    font-weight: 700;
    color: #343a40;
}

.product-spec-table__value {
    margin: 0;
    color: #212529;
}

.product-detail__compare-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background-color: rgba(118, 184, 40, 0.12);
    font-weight: 600;
    color: #2f5f0f;
    cursor: pointer;
}

.product-compare-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    padding: 0.85rem 0;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.08);
}

.product-compare-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.product-compare-bar__actions {
    display: flex;
    gap: 0.5rem;
}

.product-compare__table-wrap {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.5rem;
}

.product-compare__table {
    margin-bottom: 0;
}

.product-compare__attribute-col {
    min-width: 12rem;
    font-weight: 700;
    white-space: nowrap;
}

.product-compare__product-col {
    min-width: 10rem;
    text-align: center;
}

.product-compare__product-image {
    width: 100%;
    max-width: 8rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-compare__product-link:hover .fw-semibold {
    color: var(--aluvi-green-dark);
}

.product-compare__table tbody tr.product-compare__row--diff > th,
.product-compare__table tbody tr.product-compare__row--diff > td {
    background-color: rgba(118, 184, 40, 0.1);
}

body:has(#product-compare-bar:not([hidden])) {
    padding-bottom: 6.5rem;
}

body:has(#product-compare-bar:not([hidden])) .site-footer {
    padding-bottom: 1rem;
}

/* References */
.reference-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .reference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .reference-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.reference-grid .about-mosaic__item {
    aspect-ratio: 4 / 3;
    min-height: 0;
}

.reference-grid .about-mosaic__item img {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
}

.reference-grid .about-mosaic__item[hidden] {
    display: none;
}

.reference-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.reference-filter__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reference-filter__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border: 1px solid #dee2e6;
    border-radius: 999px;
    background-color: #f1f3f5;
    color: #495057;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.reference-filter__tag:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
}

.reference-filter__tag.is-active {
    background-color: var(--aluvi-green);
    border-color: var(--aluvi-green);
    color: #fff;
}

.reference-filter__tag.is-active:hover {
    background-color: var(--aluvi-green-dark);
    border-color: var(--aluvi-green-dark);
    color: #fff;
}

.reference-detail__description h2,
.reference-detail__description h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.reference-detail__description p {
    margin-bottom: 1rem;
}

.reference-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reference-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background-color: #f1f3f5;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.reference-tag--product {
    background-color: rgba(118, 184, 40, 0.12);
    color: #2f5f0f;
}

.reference-tag--product:hover {
    background-color: rgba(118, 184, 40, 0.2);
    color: #244a0c;
}

.reference-tag--type {
    background-color: rgba(118, 184, 40, 0.12);
    color: #2f5f0f;
}

.reference-tag--type:hover {
    background-color: rgba(118, 184, 40, 0.2);
    color: #244a0c;
}

.reference-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.product-detail__gallery .reference-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reference-gallery__thumb {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0.375rem;
    overflow: hidden;
    background: #f1f3f5;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.reference-gallery__thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}

.reference-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reference-gallery__empty {
    font-size: 0.95rem;
}

.reference-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.88);
    padding: 2rem;
}

.reference-lightbox[hidden] {
    display: none;
}

.reference-lightbox__figure {
    margin: 0;
    max-width: min(92vw, 1920px);
    max-height: 92vh;
}

.reference-lightbox__image {
    max-width: min(92vw, 1920px);
    max-height: 92vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0.25rem;
}

.reference-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}

.reference-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.reference-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 3rem;
    border: 0;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.reference-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.reference-lightbox__nav--prev {
    left: 1rem;
}

.reference-lightbox__nav--next {
    right: 1rem;
}

.reference-sidebar {
    position: sticky;
    top: 5.5rem;
    padding: 1.25rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
}

.reference-sidebar__item + .reference-sidebar__item {
    margin-top: 0.5rem;
}

.reference-sidebar__link {
    color: #6c757d;
    text-decoration: none;
    font-weight: 700;
}

.reference-sidebar__link:hover {
    color: #495057;
    text-decoration: underline;
}

.reference-sidebar__current {
    font-weight: 600;
    color: #1a1a1a;
}

.mega-menu__panel {
    min-width: min(100vw - 2rem, 52rem);
    border: 0;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.mega-menu__heading {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.mega-menu__subheading {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.mega-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-menu__list .dropdown-item {
    padding-left: 0;
    padding-right: 0;
    white-space: normal;
}

.site-nav-dropdown .dropdown-menu {
    min-width: 14rem;
    border: 0;
    --bs-dropdown-border-width: 0;
    --bs-dropdown-border-color: transparent;
    --bs-dropdown-item-padding-x: 1.5rem;
    --bs-dropdown-item-padding-y: 0.45rem;
    --bs-dropdown-link-hover-bg: transparent;
    --bs-dropdown-link-active-color: rgba(0, 0, 0, 0.85);
    --bs-dropdown-link-active-bg: transparent;
}

@media (min-width: 992px) {
    .site-nav-dropdown .dropdown-menu {
        box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
        padding: 0.75rem 0;
    }
}

.site-nav-dropdown .dropdown-item {
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
    font-weight: 500;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    padding-left: 1.5rem;
    background-color: transparent;
    background-image: linear-gradient(var(--aluvi-green), var(--aluvi-green));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 2px;
    transition: background-size 0.3s ease, color 0.3s ease;
}

.site-nav-dropdown .dropdown-item:hover,
.site-nav-dropdown .dropdown-item:focus {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.85);
    background-image: linear-gradient(var(--aluvi-green), var(--aluvi-green));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 2px;
}

.site-nav-dropdown .dropdown-item.active {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.85);
    background-size: 0% 2px;
}

.site-nav-dropdown .dropdown-item--parent {
    font-weight: 500;
}

.site-nav-dropdown .dropdown-menu--nested {
    position: static;
    display: block;
    border: 0;
    box-shadow: none;
    padding: 0 0 0.5rem 1rem;
    margin: 0;
    min-width: 0;
}

.site-nav-dropdown .dropdown-menu--nested .dropdown-item {
    font-weight: 500;
    font-size: 1.1rem;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

@media (min-width: 992px) {
    .site-nav-dropdown .dropdown-submenu {
        position: relative;
    }

    .site-nav-dropdown .dropdown-menu--nested {
        position: absolute;
        top: 0;
        left: 100%;
        display: none;
        padding: 0.75rem 0;
        min-width: 14rem;
        background-color: #fff;
        box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    }

    .site-nav-dropdown .dropdown-submenu:hover > .dropdown-menu--nested,
    .site-nav-dropdown .dropdown-submenu:focus-within > .dropdown-menu--nested {
        display: block;
    }
}

/* About */
.about-page {
    --about-ink: #1c211e;
    --about-muted: #5c6560;
    --about-line: rgba(28, 33, 30, 0.12);
    --about-surface: #f4f5f2;
    --about-dark: #151916;
    --about-dark-text: #e8ebe6;
    --about-dark-muted: #a7b0a8;
    --about-measure: 38rem;
}

.about-eyebrow {
    margin: 0 0 0.85rem;
    font-family: "Jost", system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aluvi-green-dark);
}

.about-eyebrow--on-dark {
    color: var(--aluvi-green);
}

.about-heading {
    margin: 0 0 1.25rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--about-ink);
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
}

.about-heading--on-dark {
    color: #fff;
}

.about-prose {
    max-width: var(--about-measure);
    color: var(--about-muted);
}

.about-prose p {
    margin-bottom: 1rem;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

.about-prose--narrow {
    max-width: 34rem;
}

.about-prose--on-dark {
    color: var(--about-dark-muted);
}

.about-prose--on-dark p {
    color: var(--about-dark-muted);
}

.about-section {
    padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.about-section__intro--narrow {
    max-width: 44rem;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.about-section__intro--split {
    display: grid;
    gap: 1.5rem 3rem;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 992px) {
    .about-section__intro--split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
        align-items: end;
    }
}

.about-section__footer {
    margin-top: 2rem;
}

.about-section__grid {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

@media (min-width: 992px) {
    .about-section__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }

    .about-section__grid--media-first {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: center;
    }
}

.about-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.7rem 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 0;
}

.about-page .btn-primary {
    --bs-btn-bg: var(--aluvi-green);
    --bs-btn-border-color: var(--aluvi-green);
    --bs-btn-hover-bg: var(--aluvi-green-dark);
    --bs-btn-hover-border-color: var(--aluvi-green-dark);
    --bs-btn-active-bg: var(--aluvi-green-dark);
    --bs-btn-active-border-color: var(--aluvi-green-dark);
    --bs-btn-disabled-bg: var(--aluvi-green);
    --bs-btn-disabled-border-color: var(--aluvi-green);
}

.about-btn:focus-visible {
    outline: 2px solid var(--aluvi-green);
    outline-offset: 3px;
}

.about-figure {
    margin: 0;
}

.about-figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--about-surface);
}

.about-figure--tall img {
    aspect-ratio: 4 / 5;
}

.about-figure__caption {
    margin-top: 0.65rem;
    font-size: 0.85rem;
    color: var(--about-muted);
    letter-spacing: 0.02em;
}

.about-todo {
    color: #8a5a00;
    background: rgba(255, 193, 7, 0.12);
    padding: 0.05em 0.3em;
    font-style: italic;
    font-weight: 500;
}

.about-todo--inline {
    display: inline-block;
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
}

.about-todo--note {
    display: block;
    margin: 0.5rem 0 0;
    padding: 0.55rem 0.7rem;
    font-size: 0.85rem;
    line-height: 1.4;
    border-left: 2px solid rgba(138, 90, 0, 0.45);
}

.about-todo__value {
    font-style: normal;
    font-weight: 700;
}

/* About hero */
.about-hero {
    position: relative;
    min-height: min(88vh, 52rem);
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
    background-color: var(--about-dark);
}

.about-hero__media {
    position: absolute;
    inset: 0;
}

.about-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page:not(.home-page) .about-hero__image {
    position: absolute;
    inset: 0;
    display: block;
    object-position: center 62%;
}

.about-hero__overlay {
    --hero-fade: min(52rem, 62vw);
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: -100vw;
    width: calc(100% + 100vw + 6rem);
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(12, 16, 13, 0.78) 0%,
            rgba(12, 16, 13, 0.62) 58%,
            rgba(12, 16, 13, 0.28) 82%,
            rgba(12, 16, 13, 0) 100%
        ) right center / var(--hero-fade) 100% no-repeat,
        linear-gradient(rgba(12, 16, 13, 0.78), rgba(12, 16, 13, 0.78)) left center / calc(100% - var(--hero-fade) + 1px) 100% no-repeat;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
}

.about-hero > .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.about-hero__content {
    position: relative;
    max-width: 40rem;
    padding-top: clamp(5rem, 12vw, 8rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

.about-hero__title {
    margin: 0 0 1.25rem;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #fff;
}

.about-hero__lead {
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.86);
}

.about-hero__lead p {
    margin-bottom: 0.85rem;
}

.about-hero__lead p:last-child {
    margin-bottom: 0;
}

/* About story */
.about-story {
    border-bottom: 1px solid var(--about-line);
}

.about-story__facts {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--about-line);
}

@media (min-width: 576px) {
    .about-story__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

.about-fact__number {
    display: block;
    font-family: "Jost", system-ui, sans-serif;
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--about-ink);
    margin-bottom: 0.5rem;
}

.about-fact__number--sm {
    font-size: clamp(3rem, 7vw, 4.5rem);
}

.about-fact__label {
    display: block;
    max-width: 14rem;
    color: var(--about-muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.about-story__media {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .about-story__media {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: end;
        gap: 1.25rem;
    }

    .about-figure--offset {
        margin-bottom: 2.5rem;
    }
}

/* About values */
.about-values {
    background-color: var(--about-surface);
}

.about-values__top {
    display: grid;
    gap: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

@media (min-width: 992px) {
    .about-values__top {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: clamp(2rem, 5vw, 4rem);
    }
}

.about-values__top .about-section__intro {
    margin-bottom: 0;
}

.about-values__media img {
    aspect-ratio: 4 / 3;
}

.about-values__list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--about-line);
}

@media (min-width: 768px) {
    .about-values__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.about-value {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--about-line);
}

@media (min-width: 768px) {
    .about-value {
        padding: 1.75rem 1.5rem 1.75rem 0;
        border-right: 1px solid var(--about-line);
    }

    .about-value:nth-child(2n) {
        padding-left: 1.5rem;
        padding-right: 0;
        border-right: 0;
    }

    .about-value:nth-child(-n+2) {
        border-top: 0;
    }
}

.about-value__title {
    margin: 0 0 0.65rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--about-ink);
}

.about-value p {
    margin: 0;
    max-width: 28rem;
    color: var(--about-muted);
}

/* About process */
.about-process__layout {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 992px) {
    .about-process__layout {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
        align-items: start;
    }
}

.about-steps {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    border-top: 1px solid var(--about-line);
}

.about-step {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 0.85rem 1.1rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--about-line);
}

.about-step__num {
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--aluvi-green-dark);
    line-height: 1.2;
}

.about-step__title {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--about-ink);
}

.about-step__body p {
    margin: 0;
    max-width: 36rem;
    color: var(--about-muted);
}

.about-figure--sticky img {
    aspect-ratio: 3 / 4;
}

@media (min-width: 992px) {
    .about-figure--sticky {
        position: sticky;
        top: 6rem;
    }
}

/* About quality band */
.about-band--dark {
    background-color: var(--about-dark);
    color: var(--about-dark-text);
    padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.about-quality__grid {
    display: grid;
    gap: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 992px) {
    .about-quality__grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
        align-items: start;
    }
}

.about-highlight,
.about-quality__highlight {
    margin: 1.75rem 0 0;
    padding: 1.1rem 0 0;
    border-top: 1px solid var(--about-line);
    max-width: 34rem;
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--about-ink);
}

.about-highlight--on-dark,
.about-quality__highlight {
    border-top-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.about-layers {
    display: grid;
    gap: 0.55rem;
}

.about-layers__item {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 3px solid var(--aluvi-green);
    background: rgba(255, 255, 255, 0.03);
    font-family: "Jost", system-ui, sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #fff;
}

.about-layers__item:nth-child(2) { margin-left: 0.35rem; }
.about-layers__item:nth-child(3) { margin-left: 0.7rem; }
.about-layers__item:nth-child(4) { margin-left: 1.05rem; }
.about-layers__item:nth-child(5) { margin-left: 1.4rem; }
.about-layers__item:nth-child(6) { margin-left: 1.75rem; }
.about-layers__item:nth-child(7) { margin-left: 2.1rem; }

@media (max-width: 575.98px) {
    .about-layers__item:nth-child(n) {
        margin-left: 0;
    }
}

/* About Schüco */
.about-schueco__grid {
    align-items: center;
}

.about-schueco__experience {
    margin: 0 0 1.25rem;
    max-width: var(--about-measure);
    color: var(--about-muted);
}

.about-schueco__experience strong {
    color: var(--about-ink);
    font-weight: 600;
}

@media (min-width: 992px) {
    .about-schueco__grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }
}

.about-schueco .about-figure img {
    aspect-ratio: 4 / 3;
}

/* About atypical */
.about-atypical {
    position: relative;
    min-height: min(70vh, 40rem);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--about-dark);
    padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.about-atypical__media,
.about-atypical__overlay {
    position: absolute;
    inset: 0;
}

.about-atypical__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-atypical__overlay {
    background:
        linear-gradient(90deg, rgba(12, 16, 13, 0.9) 0%, rgba(12, 16, 13, 0.72) 55%, rgba(12, 16, 13, 0.4) 100%);
}

.about-atypical__content {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    padding-left: clamp(1.5rem, 4.5vw, 3.5rem);
    padding-right: clamp(1.5rem, 4.5vw, 3.5rem);
}

.about-atypical__content > .about-btn {
    margin-top: 2.5rem;
}

/* About mosaic */
.about-mosaic {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .about-mosaic {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: minmax(11rem, auto);
    }

    .about-mosaic__item--1 {
        grid-column: 1 / span 4;
        grid-row: 1 / span 2;
    }

    .about-mosaic__item--2 {
        grid-column: 5 / span 2;
        grid-row: 1 / span 2;
    }

    .about-mosaic__item--3 {
        grid-column: 1 / span 2;
        grid-row: 3 / span 2;
    }

    .about-mosaic__item--4 {
        grid-column: 3 / span 2;
        grid-row: 3 / span 2;
    }

    .about-mosaic__item--stat {
        grid-column: 5 / span 2;
        grid-row: 3 / span 2;
    }
}

.about-mosaic__item {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--about-surface);
    color: inherit;
    text-decoration: none;
    min-height: 14rem;
}

.about-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.35s ease;
}

@media (min-width: 768px) {
    .about-mosaic__item img {
        position: absolute;
        inset: 0;
        aspect-ratio: auto;
    }

    .about-mosaic__item--2 img {
        object-position: center;
    }
}

.about-mosaic__item:hover img,
.about-mosaic__item:focus-visible img {
    transform: scale(1.03);
}

.about-mosaic__item:focus-visible {
    outline: 2px solid var(--aluvi-green);
    outline-offset: 3px;
}

.about-mosaic__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.1rem 1rem 0.95rem;
    background: linear-gradient(0deg, rgba(12, 16, 13, 0.78), transparent);
    color: #fff;
    font-family: "Jost", system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.about-mosaic__item--stat {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background-color: var(--about-ink);
    color: #fff;
    min-height: 14rem;
}

.about-mosaic__stat-number {
    font-family: "Jost", system-ui, sans-serif;
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.about-mosaic__stat-label {
    margin-top: 0.65rem;
    max-width: 10rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* About team */
.about-team {
    background-color: var(--about-surface);
    border-top: 1px solid var(--about-line);
}

.about-team__grid {
    display: grid;
    gap: 2rem 1.25rem;
}

@media (min-width: 768px) {
    .about-team__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .about-team__grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        align-items: start;
    }

    .about-person--1 { grid-column: 1 / span 3; }
    .about-person--2 { grid-column: 4 / span 3; margin-top: 2.5rem; }
    .about-person--3 { grid-column: 7 / span 3; }
    .about-person--4 { grid-column: 10 / span 3; margin-top: 2.5rem; }
}

.about-person__photo {
    margin: 0 0 1rem;
}

.about-person__photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background-color: #dde1d8;
}

.about-person__name {
    margin: 0 0 0.25rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--about-ink);
}

.about-person__role {
    margin: 0;
    color: var(--about-muted);
    font-size: 0.95rem;
}

/* About closing */
.about-closing {
    border-top: 1px solid var(--about-line);
}

.about-closing__layout {
    display: grid;
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
}

@media (min-width: 992px) {
    .about-closing__layout {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
        gap: clamp(2rem, 5vw, 4rem);
    }
}

.about-closing__inner {
    max-width: 40rem;
}

.about-closing__media {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .about-closing__media {
        margin-right: 0;
    }
}

.about-closing__media img {
    aspect-ratio: 4 / 5;
}

.about-closing__sign {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--about-line);
}

.about-closing__brand {
    margin: 0 0 0.35rem;
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--about-ink);
}

.about-closing__tagline {
    margin: 0;
    color: var(--about-muted);
    max-width: 28rem;
}

@media (max-width: 575.98px) {
    .about-hero {
        min-height: auto;
    }

    .about-hero__content {
        padding-top: 4.5rem;
    }

    .about-cta-group .about-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-mosaic__item img,
    .about-btn {
        transition: none;
    }
}

/* Prečo Schüco */
.why-schuco-page #rozdiel-v-detailoch {
    scroll-margin-top: 5.5rem;
}

.why-schuco-hero__note {
    margin: 1.25rem 0 0;
    font-family: "Jost", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.72);
}

.why-schuco-system .about-highlight {
    max-width: 40rem;
}

.why-schuco-features {
    border-top: 1px solid var(--about-line);
}

.why-schuco-feature {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    padding: clamp(2rem, 5vw, 3.75rem) 0;
    border-top: 1px solid var(--about-line);
}

.why-schuco-feature:first-child {
    border-top: 0;
    padding-top: 0;
}

.why-schuco-feature__title {
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    margin-bottom: 0.85rem;
}

.why-schuco-feature__media img {
    aspect-ratio: 4 / 3;
}

@media (min-width: 992px) {
    .why-schuco-feature {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }

    .why-schuco-feature:nth-child(even) .why-schuco-feature__copy {
        order: 2;
    }
}

.why-schuco-params {
    overflow-x: clip;
}

.why-schuco-params__intro {
    max-width: 40rem;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.why-schuco-uvalues {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
    .why-schuco-uvalues {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
        align-items: center;
    }
}

.why-schuco-uvalues__list {
    margin: 0;
}

.why-schuco-uvalue {
    display: grid;
    gap: 0.35rem 1.5rem;
    padding: 1.35rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.why-schuco-uvalue:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

@media (min-width: 768px) {
    .why-schuco-uvalue {
        grid-template-columns: 7.5rem minmax(0, 1fr);
        align-items: baseline;
    }
}

.why-schuco-uvalue__term {
    font-family: "Jost", system-ui, sans-serif;
    font-size: clamp(2.75rem, 7vw, 4.25rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: #fff;
}

.why-schuco-uvalue__def {
    margin: 0;
    max-width: 22rem;
    color: var(--about-dark-muted);
    font-size: 1.05rem;
    line-height: 1.45;
}

.why-schuco-schema {
    display: none;
    padding: 1.75rem 2.75rem 1.25rem;
}

@media (min-width: 992px) {
    .why-schuco-schema {
        display: flex;
        justify-content: center;
    }
}

.why-schuco-schema__window {
    position: relative;
    width: min(100%, 16rem);
    aspect-ratio: 4 / 5;
    border: 10px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

.why-schuco-schema__glass {
    position: absolute;
    inset: 12% 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.45);
    font-family: "Jost", system-ui, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.why-schuco-schema__label {
    position: absolute;
    font-family: "Jost", system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--aluvi-green);
}

.why-schuco-schema__label--glass {
    top: 50%;
    right: -2.1rem;
    transform: translateY(-50%);
}

.why-schuco-schema__label--frame {
    bottom: 0.35rem;
    left: 50%;
    transform: translateX(-50%);
}

.why-schuco-schema__label--window {
    top: -1.65rem;
    left: 50%;
    transform: translateX(-50%);
}

.why-schuco-years {
    display: grid;
    gap: 1.5rem;
    margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

@media (min-width: 768px) {
    .why-schuco-years {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto auto;
        align-items: start;
        gap: 1.25rem 1rem;
    }
}

.why-schuco-years__connector {
    display: none;
}

@media (min-width: 768px) {
    .why-schuco-years__connector {
        display: block;
        width: 2.5rem;
        height: 1px;
        margin-top: 2.1rem;
        background: var(--about-line);
    }
}

.why-schuco-year__now {
    display: block;
    margin-top: 0.85rem;
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--aluvi-green-dark);
}

@media (min-width: 768px) {
    .why-schuco-year--now {
        padding-top: 0.35rem;
    }

    .why-schuco-year__now {
        margin-top: 1.35rem;
    }
}

.why-schuco-sustain {
    background-color: var(--about-surface);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.why-schuco-sustain .about-section__intro--narrow {
    margin-bottom: 0;
}

.why-schuco-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--about-line);
}

.why-schuco-checklist__item {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 0.75rem 1rem;
    align-items: baseline;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--about-line);
}

@media (min-width: 768px) {
    .why-schuco-checklist {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 3rem;
        border-top: 0;
    }

    .why-schuco-checklist__item {
        border-top: 1px solid var(--about-line);
        border-bottom: 0;
    }
}

.why-schuco-checklist__num {
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--aluvi-green-dark);
}

.why-schuco-checklist__title {
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--about-ink);
}

.why-schuco-compare .about-highlight {
    max-width: 36rem;
}

.why-schuco-work {
    border-top: 1px solid var(--about-line);
}

.why-schuco-work .about-figure img {
    aspect-ratio: 4 / 3;
}

@media (min-width: 992px) {
    .why-schuco-schema__label--glass {
        right: -2.35rem;
    }
}

/* Under construction */
.under-construction {
    background: linear-gradient(160deg, #f7faf3 0%, #eef5e4 45%, #f5f5f5 100%);
}

.under-construction__main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    min-height: 100vh;
}

.under-construction__inner {
    max-width: 28rem;
}

.under-construction__logo {
    display: block;
    height: 48px;
    width: auto;
    margin: 0 auto 2rem;
}

.under-construction__title {
    font-family: "Jost", system-ui, sans-serif;
    font-weight: 600;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: #222;
}

.under-construction__text {
    margin: 0;
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Utilities */
