/* =========================================================
   AQUAPURE BASE PAGE
   Shared navbar, mobile navigation, footer, and responsiveness
========================================================= */

:root {
    --nav-height: 69px;
    --nav-height-tablet: 76px;
    --nav-height-mobile: 70px;
    --black: #000000;
    --white: #ffffff;
    --gray: #868686;
    --muted: #9a9a9a;
    --olive: #3d4519;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100vh;
    padding-top: var(--nav-height);
    overflow-x: hidden;
    background: var(--white);
    color: var(--black);
    font-family: "Geologica", sans-serif;
}

body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
}

img,
video {
    max-width: 100%;
}

button,
a {
    font: inherit;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #4b5320;
    z-index: 99999;
    pointer-events: none;
    transition: width .25s ease, opacity .3s ease;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 22px;
    background: var(--white);
    transform: translateY(0);
    will-change: transform;
    transition: transform .28s cubic-bezier(.16, 1, .3, 1), background-color .6s ease;
}

.navbar.nav-hidden {
    transform: translateY(-105%);
    pointer-events: none;
}

.navbar:not(.nav-hidden) {
    transform: translateY(0);
    pointer-events: auto;
}

.navbar.defense-active {
    background: var(--olive);
}

.navbar.nav-hidden .nav-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nav-logo {
    flex: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    display: block;
    width: auto;
    height: 29px;
}

.nav-menu {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
}

.nav-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 36px;
}

.nav-item {
    position: relative;
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

.nav-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -16px;
    width: calc(100% + 32px);
    height: 24px;
}

.nav-item > a {
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
}

.nav-menu a,
.nav-actions a {
    color: var(--black);
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
    transition: color .25s ease;
}

.nav-menu a:hover,
.nav-actions a:hover {
    color: #808080;
}

.nav-link-active {
    position: relative;
    color: #808080 !important;
}

.nav-link-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #808080;
}

.nav-separator {
    width: 2px;
    height: 19px;
    background: #a8a8a7;
}

.defense-link span {
    color: var(--olive);
    font-weight: 700;
}

.search-link,
.company-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.search-link .material-icons {
    font-size: 16px;
}

.company-link {
    font-weight: 600;
}

.company-icon,
.list-icon {
    position: relative;
    width: 11px;
    height: 11px;
    display: inline-block;
    flex: 0 0 auto;
}

.icon-plus,
.icon-minus,
.list-icon .icon-plus,
.list-icon .icon-minus {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    transition: opacity .55s ease, transform .55s cubic-bezier(.16, 1, .3, 1);
}

.icon-plus,
.list-icon .icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-minus,
.list-icon .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.dropdown-categories li:hover .icon-plus,
.consumer-col li:hover .icon-plus,
.company-col li:hover .icon-plus {
    opacity: 0;
    transform: rotate(180deg);
}

.dropdown-categories li:hover .icon-minus,
.consumer-col li:hover .icon-minus,
.company-col li:hover .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

/* =========================
   DESKTOP MEGA MENUS
========================= */

.nav-dropdown {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    z-index: 999;
    width: 100%;
    height: 288px;
    display: flex;
    gap: 176px;
    padding: 44px 56px;
    background: var(--gray);
    color: var(--black);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-28px);
    transition: opacity .4s ease, transform .8s cubic-bezier(.16, 1, .3, 1), visibility 0s linear .4s;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .4s ease, transform .8s cubic-bezier(.16, 1, .3, 1), visibility 0s linear 0s;
}

.dropdown-info {
    width: 336px;
    flex: 0 0 auto;
}

.dropdown-info h4,
.dropdown-categories h4,
.consumer-col h4,
.company-col h4 {
    margin-bottom: 28px;
    color: var(--black);
    font-size: 13px;
}

.dropdown-info p {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
}

.dropdown-categories ul,
.consumer-col ul,
.company-col ul {
    list-style: none;
}

.dropdown-categories li,
.consumer-col li,
.company-col li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.dropdown-categories li a,
.company-col li a {
    color: inherit;
    text-decoration: none;
}

.defense-dropdown {
    background: var(--olive);
}

.defense-dropdown .dropdown-categories li a:hover {
    color: #dddddd;
}

.consumer-dropdown {
    min-height: 288px;
    height: auto;
    gap: 32px;
    padding: 44px 32px;
}

.consumer-col {
    flex: 1;
    min-width: 0;
}

.consumer-col h4 {
    margin-bottom: 10px;
}

.consumer-col p {
    margin-bottom: 20px;
    font-size: 11px;
    line-height: 1.5;
}

.consumer-separator {
    width: 1px;
    margin: 0 16px;
    background: var(--black);
}

.toro {
    color: #ff0000;
    font-weight: 700;
}

.company-dropdown {
    gap: 96px;
}

.company-grid {
    display: flex;
    gap: 64px;
}

.company-grid .company-col:nth-child(1) {
    margin-left: 96px;
}

.company-grid .company-col:nth-child(2) {
    margin-left: 40px;
}

.company-social {
    margin-top: 28px;
}

.company-social h4 {
    margin-bottom: 8px;
}

.page-content.blur {
    filter: blur(6px);
    pointer-events: none;
    transition: filter .3s ease;
}

/* =========================
   MOBILE NAVIGATION
========================= */

.mobile-menu-btn {
    display: none;
    position: relative;
    z-index: 1002;
    margin-left: auto;
    padding: 6px;
    border: 0;
    background: none;
    color: var(--black);
    cursor: pointer;
}

.mobile-menu-btn .material-icons {
    font-size: 34px;
}

.mobile-menu-panel {
    position: fixed;
    top: var(--nav-height-tablet);
    left: 0;
    z-index: 1001;
    width: 100%;
    height: calc(100dvh - var(--nav-height-tablet));
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 30px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .35s ease;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-menu-panel a {
    color: var(--black);
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
}

/* =========================
   EMPTY PAGE AREA
========================= */

.page-content {
    width: 100%;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-main {
    flex: 1 0 auto;
    width: 100%;
    min-height: 320px;
    background: var(--white);
}

/* =========================
   FOOTER
========================= */

.footer {
    flex: 0 0 auto;
    width: 100%;
    min-height: 336px;
    display: grid;
    grid-template-columns: 1.3fr 1.4fr;
    gap: 64px;
    padding: 37px 26px 29px;
    background: var(--black);
    color: var(--white);
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: block;
    width: auto;
    height: 26px;
    object-fit: contain;
    margin-bottom: 124px;
}

.footer-address h4 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.footer-address p {
    color: var(--white);
    font-size: 11px;
    line-height: 1.45;
    font-weight: 400;
}

.footer-line {
    width: 176px;
    height: 1px;
    margin: 14px 0;
    background: #999999;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 72px;
    padding-top: 10px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-toggle {
    display: flex;
    margin: 0 0 27px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--muted);
    font: 700 12px "Geologica", sans-serif;
    text-align: left;
    pointer-events: none;
}

.footer-toggle .footer-icon {
    display: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
    transition: color .25s ease;
}

.footer-links a:hover {
    color: #808080;
}

/* =========================
   SCROLL TO TOP
========================= */

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 950;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(0, 0, 0, .88);
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background-color .25s ease;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--olive);
}

body.mobile-menu-open .scroll-to-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 1100px) {
    body {
        padding-top: var(--nav-height-tablet);
    }

    .navbar {
        height: var(--nav-height-tablet);
        padding: 0 22px;
        justify-content: space-between;
    }

    .navbar.nav-hidden {
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-logo {
        flex: unset;
    }

    .nav-logo img {
        width: auto !important;
        max-width: min(72vw, 320px);
        height: 32px;
        object-fit: contain;
    }

    .nav-menu,
    .nav-actions,
    .nav-dropdown {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .page-content.blur {
        filter: none;
        pointer-events: auto;
    }

    .page-content {
        min-height: calc(100vh - var(--nav-height-tablet));
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-logo {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: var(--nav-height-mobile);
    }

    .navbar {
        height: var(--nav-height-mobile);
        padding: 0 16px;
    }

    .nav-logo img {
        max-width: min(70vw, 280px);
        height: 30px;
    }

    .mobile-menu-panel {
        top: var(--nav-height-mobile);
        height: calc(100dvh - var(--nav-height-mobile));
        padding: 28px 20px;
    }

    .page-content {
        min-height: calc(100vh - var(--nav-height-mobile));
    }

    .page-main {
        min-height: 220px;
    }

    .footer {
        gap: 38px;
        padding: 38px 22px;
    }

    .footer-logo {
        width: auto !important;
        height: 30px;
        margin-bottom: 48px;
    }

    .footer-addresses {
        width: 100%;
        display: grid;
        grid-template-columns: 1.2fr 1px 1fr;
        gap: 18px;
    }

    .footer-line {
        width: 1px;
        height: 100%;
        min-height: 110px;
        margin: 0;
        background: #4a4a4a;
    }

    .footer-address h4 {
        color: var(--muted);
        font-size: 13px;
    }

    .footer-address p {
        font-size: 13px;
        line-height: 1.55;
    }

    .footer-columns {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-top: 18px;
    }

    .footer-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding: 26px 0;
        color: #8f8f8f;
        font-size: 14px;
        pointer-events: auto;
        cursor: pointer;
    }

    .footer-toggle .footer-icon {
        display: inline-flex;
        color: var(--white);
        font-size: 28px;
        line-height: 1;
    }

    .footer-links {
        max-height: 0;
        gap: 8px;
        overflow: hidden;
        opacity: 0;
        transition: max-height .45s cubic-bezier(.16, 1, .3, 1), opacity .35s ease;
    }

    .footer-col.active .footer-links {
        max-height: 280px;
        padding-bottom: 22px;
        opacity: 1;
    }

    .footer-links a {
        font-size: 21px;
        font-weight: 500;
        line-height: 1.45;
    }

    .scroll-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        max-width: 68vw;
        height: 27px;
    }

    .page-main {
        min-height: 180px;
    }

    .footer {
        padding-right: 18px;
        padding-left: 18px;
    }

    .footer-addresses {
        grid-template-columns: 1fr;
    }

    .footer-line {
        width: 100%;
        height: 1px;
        min-height: 1px;
        margin: 16px 0;
    }

    .footer-links a {
        font-size: 19px;
    }

    .scroll-to-top {
        right: 14px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }
}

/* =========================================================
   AQUAPURE NAVIGATION — BLACK THEME
   Authoritative overrides for desktop and mobile navigation
========================================================= */

/* Main navbar */
.navbar,
.navbar.defense-active {
    background: var(--black);
    color: var(--white);
}

/* The HTML currently uses the dark logo, so convert it to white */
.nav-logo img {
    filter: brightness(0) invert(1);
}

/* Desktop navigation links */
.nav-menu a,
.nav-actions a,
.nav-item > a,
.search-link,
.company-link,
.defense-link,
.defense-link span {
    color: var(--white);
}

.nav-menu a:hover,
.nav-actions a:hover,
.nav-item > a:hover {
    color: #b8b8b8;
}

.nav-link-active {
    color: #b8b8b8 !important;
}

.nav-link-active::after {
    background: #b8b8b8;
}

.nav-separator {
    background: #4a4a4a;
}

/* Search, company, plus, and minus icons */
.search-link .material-icons,
.mobile-menu-btn,
.company-icon,
.list-icon,
.icon-plus,
.icon-minus {
    color: var(--white);
}

/* All desktop dropdown panels */
.nav-dropdown,
.consumer-dropdown,
.company-dropdown,
.defense-dropdown {
    background: var(--black);
    color: var(--white);
    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
}

/* All dropdown headings and copy */
.nav-dropdown .dropdown-info h4,
.nav-dropdown .dropdown-categories h4,
.nav-dropdown .consumer-col h4,
.nav-dropdown .company-col h4,
.nav-dropdown .dropdown-info p,
.nav-dropdown .consumer-col p,
.nav-dropdown .company-social,
.nav-dropdown .company-social h4,
.nav-dropdown .company-social p {
    color: var(--white);
}

/* All dropdown list items and links */
.nav-dropdown .dropdown-categories li,
.nav-dropdown .consumer-col li,
.nav-dropdown .company-col li,
.nav-dropdown .dropdown-categories li a,
.nav-dropdown .company-col li a,
.defense-dropdown .dropdown-categories li,
.defense-dropdown .dropdown-categories li a {
    color: var(--white);
}

.nav-dropdown .dropdown-categories li:hover,
.nav-dropdown .consumer-col li:hover,
.nav-dropdown .company-col li:hover,
.nav-dropdown .dropdown-categories li a:hover,
.nav-dropdown .company-col li a:hover,
.defense-dropdown .dropdown-categories li a:hover {
    color: #b8b8b8;
}

/* Divider inside Consumer Products dropdown */
.consumer-separator {
    background: #444444;
}

/* Keep TORO brand accent */
.toro {
    color: #ff0000;
}

/* Mobile navigation */
.mobile-menu-btn {
    color: var(--white);
}

.mobile-menu-panel {
    background: var(--black);
    border-top: 1px solid #242424;
}

.mobile-menu-panel a {
    color: var(--white);
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a[aria-current="page"] {
    color: #b8b8b8;
}

/* Prevent mobile navbar overrides from restoring light colors */
@media (max-width: 1100px) {
    .navbar,
    .navbar.defense-active {
        background: var(--black);
    }

    .mobile-menu-btn,
    .mobile-menu-btn .material-icons {
        color: var(--white);
    }
}

/* =========================================================
   AQUAPURE PAGE
   Dark editorial product page
========================================================= */

.page-main {
    width: 100%;
    max-width: none;
    min-height: 0;
    background: #000000;
}

/* =========================================================
   AQUAPURE INTRO
========================================================= */

.aquapure-intro {
    width: 100%;
    min-height: calc(88svh - var(--nav-height));
    overflow: hidden;
    background: #000000;
    color: #ffffff;
}

.aquapure-intro__inner {
    width: 100%;
    min-height: calc(88svh - var(--nav-height));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding:
        0
        clamp(28px, 2vw, 38px)
        clamp(72px, 9vh, 92px);
}

.aquapure-intro__title {
    max-width: 1460px;
    margin: 0 0 clamp(64px, 9vh, 84px);
    color: #ffffff;
    font-size: clamp(66px, 7.3vw, 132px);
    font-weight: 600;
    line-height: .88;
    letter-spacing: -.065em;
}

.aquapure-intro__details {
    width: 100%;
    display: grid;
    grid-template-columns:
        minmax(250px, 280px)
        minmax(560px, 760px)
        1fr;
    column-gap: clamp(26px, 2vw, 38px);
    align-items: start;
}

.aquapure-intro__classification {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aquapure-intro__eyebrow,
.aquapure-intro__category {
    margin: 0;
    color: #ffffff;
    font-size: clamp(12px, .78vw, 15px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.025em;
    text-transform: uppercase;
    white-space: nowrap;
}

.aquapure-intro__category {
    margin-top: clamp(34px, 5vh, 48px);
}

.aquapure-intro__category::before {
    content: "[ ";
}

.aquapure-intro__category::after {
    content: " ]";
}

.aquapure-intro__description {
    width: 100%;
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(12px, .78vw, 15px);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -.015em;
}

/* =========================================================
   AQUAPURE VIDEO
========================================================= */

.aquapure-video {
    width: 100%;
    padding: 0 25px 25px;
    background: #000000;
}

.aquapure-video__screen {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #101010;
    border: 1px solid #222222;
}

.aquapure-video__media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background: #101010;
}

/* =========================================================
   AQUAPURE PRODUCT CARD
   One card retained inside a three-column desktop grid
========================================================= */

.aquapure-product {
    width: 100%;
    padding:
        clamp(74px, 8vw, 124px)
        25px
        clamp(92px, 9vw, 145px);
    background: #000000;
}

.aquapure-product__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.6vw, 28px);
    align-items: stretch;
}

.aquapure-product-card {
    --corner-cut: clamp(22px, 2.2vw, 38px);

    position: relative;
    min-width: 0;
    min-height: clamp(560px, 36vw, 720px);
    display: flex;
    flex-direction: column;
    padding:
        clamp(26px, 2.4vw, 40px)
        clamp(28px, 2.8vw, 46px)
        clamp(24px, 2.3vw, 38px);
    overflow: hidden;
    background: #f2f1e9;
    color: #000000;

    clip-path: polygon(
        0 0,
        calc(100% - var(--corner-cut)) 0,
        100% var(--corner-cut),
        100% 100%,
        var(--corner-cut) 100%,
        0 calc(100% - var(--corner-cut))
    );
}

.aquapure-product-card h2 {
    margin: 0;
    color: #000000;
    font-size: clamp(15px, 1.05vw, 20px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.aquapure-product-card__media {
    width: 100%;
    height: clamp(220px, 19vw, 330px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: clamp(22px, 2.7vw, 42px) 0 clamp(22px, 2.5vw, 38px);
    overflow: hidden;
}

.aquapure-product-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.aquapure-product-card__specs {
    margin: 0;
    border-top: 1px solid #000000;
}

.aquapure-product-card__specs > div {
    display: grid;
    grid-template-columns: minmax(105px, .8fr) minmax(0, 1.2fr);
    gap: 20px;
    padding: 12px 0 11px;
    border-bottom: 1px solid #000000;
}

.aquapure-product-card__specs dt,
.aquapure-product-card__specs dd {
    margin: 0;
    color: #000000;
    font-size: clamp(10px, .72vw, 12px);
    line-height: 1.35;
}

.aquapure-product-card__specs dt {
    font-weight: 600;
    letter-spacing: .045em;
}

.aquapure-product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-end;
    margin-top: auto;
    padding-top: 22px;
    color: #000000;
    text-decoration: none;
    font-size: 11px;
    transition: gap .25s ease, opacity .25s ease;
}

.aquapure-product-card__link:hover {
    gap: 13px;
    opacity: .62;
}

/* =========================================================
   CAPABILITIES HEADER
========================================================= */

.aquapure-capabilities {
    width: 100%;
    padding:
        clamp(88px, 10vw, 150px)
        25px
        clamp(96px, 11vw, 170px);
    background: #000000;
    color: #ffffff;
    border-top: 1px solid #242424;
}

.aquapure-capabilities__header {
    display: grid;
    grid-template-columns: minmax(180px, 24%) minmax(0, 1fr);
    gap: clamp(40px, 8vw, 140px);
    align-items: start;
    padding-bottom: clamp(72px, 9vw, 130px);
}

.aquapure-capabilities__index {
    margin: 6px 0 0;
    color: #808080;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
}

.aquapure-capabilities__heading {
    max-width: 980px;
}

.aquapure-capabilities__heading h2 {
    margin: 0;
    max-width: 950px;
    color: #ffffff;
    font-size: clamp(48px, 6vw, 100px);
    font-weight: 500;
    line-height: .94;
    letter-spacing: -.06em;
}

.aquapure-capabilities__heading > p {
    max-width: 620px;
    margin: clamp(34px, 4vw, 58px) 0 0 auto;
    color: #a0a0a0;
    font-size: clamp(14px, 1.05vw, 18px);
    line-height: 1.55;
}

/* =========================================================
   KEY FEATURES
========================================================= */

.aquapure-key-features {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 7vw, 120px);
    align-items: start;
}

.aquapure-key-features__intro {
    position: sticky;
    top: calc(var(--nav-height) + 28px);
}

.aquapure-key-features__label,
.aquapure-components__label {
    margin: 0 0 28px;
    color: #777777;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
}

.aquapure-key-features__intro h3,
.aquapure-components__summary h3 {
    max-width: 450px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(21px, 2vw, 34px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.aquapure-key-features__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #363636;
}

.aquapure-key-feature {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    padding: clamp(28px, 3vw, 46px) 0;
    border-bottom: 1px solid #363636;
}

.aquapure-key-feature > span {
    padding-top: 4px;
    color: #707070;
    font-size: 10px;
    letter-spacing: .08em;
}

.aquapure-key-feature h4 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: clamp(20px, 1.6vw, 29px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.aquapure-key-feature p {
    max-width: 660px;
    margin: 0;
    color: #9b9b9b;
    font-size: clamp(13px, .95vw, 16px);
    line-height: 1.6;
}

/* =========================================================
   SYSTEM COMPONENTS
========================================================= */

.aquapure-components {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 7vw, 120px);
    align-items: start;
    margin-top: clamp(100px, 12vw, 190px);
}

.aquapure-components__summary {
    position: sticky;
    top: calc(var(--nav-height) + 28px);
}

.aquapure-components__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 38px;
}

.aquapure-components__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 11px;
    border: 1px solid #353535;
    color: #a5a5a5;
    font-size: 10px;
    letter-spacing: .06em;
}

.aquapure-components__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #363636;
}

.aquapure-component {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    padding: clamp(24px, 2.6vw, 40px) 0;
    border-bottom: 1px solid #363636;
}

.aquapure-component__number {
    padding-top: 4px;
    color: #707070;
    font-size: 10px;
    letter-spacing: .08em;
}

.aquapure-component h4 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(20px, 1.55vw, 28px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.aquapure-component p {
    max-width: 700px;
    margin: 0;
    color: #9b9b9b;
    font-size: clamp(13px, .95vw, 16px);
    line-height: 1.6;
}

/* =========================================================
   TECHNICAL PARAMETERS
========================================================= */

.aquapure-parameters {
    margin-top: clamp(110px, 13vw, 200px);
}

.aquapure-parameters__heading {
    display: grid;
    grid-template-columns: minmax(180px, 24%) minmax(0, 1fr);
    gap: clamp(40px, 8vw, 140px);
    margin-bottom: clamp(48px, 6vw, 86px);
}

.aquapure-parameters__heading p,
.aquapure-advantages__heading > p {
    margin: 5px 0 0;
    color: #777777;
    font-size: 10px;
    letter-spacing: .1em;
}

.aquapure-parameters__heading h3,
.aquapure-advantages__heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 82px);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.05em;
}

.aquapure-parameters__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid #353535;
    border-left: 1px solid #353535;
}

.aquapure-parameters__grid > div {
    min-height: 112px;
    padding: 22px 24px;
    border-right: 1px solid #353535;
    border-bottom: 1px solid #353535;
}

.aquapure-parameters__grid dt {
    margin: 0 0 16px;
    color: #777777;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .09em;
}

.aquapure-parameters__grid dd {
    margin: 0;
    color: #ffffff;
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.5;
}

/* =========================================================
   DEPLOYMENT ADVANTAGES
========================================================= */

.aquapure-advantages {
    margin-top: clamp(110px, 13vw, 200px);
}

.aquapure-advantages__heading {
    display: grid;
    grid-template-columns: minmax(180px, 24%) minmax(0, 1fr);
    gap: clamp(40px, 8vw, 140px);
    margin-bottom: clamp(48px, 6vw, 86px);
}

.aquapure-advantages__heading h3 {
    max-width: 1000px;
}

.aquapure-advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #2b2b2b;
    border: 1px solid #2b2b2b;
}

.aquapure-advantages__grid article {
    min-height: 285px;
    padding: clamp(26px, 2.6vw, 42px);
    background: #080808;
}

.aquapure-advantages__grid span {
    color: #6f6f6f;
    font-size: 10px;
    letter-spacing: .08em;
}

.aquapure-advantages__grid h4 {
    margin: 78px 0 15px;
    color: #ffffff;
    font-size: clamp(20px, 1.45vw, 27px);
    font-weight: 500;
    letter-spacing: -.025em;
}

.aquapure-advantages__grid p {
    margin: 0;
    color: #929292;
    font-size: 13px;
    line-height: 1.55;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (min-width: 1600px) {
    .aquapure-intro__title {
        font-size: 132px;
    }

    .aquapure-intro__details {
        grid-template-columns: 270px 760px 1fr;
    }
}

@media (max-width: 1100px) {
    .aquapure-intro {
        min-height: calc(100svh - var(--nav-height-tablet));
    }

    .aquapure-intro__inner {
        min-height: calc(100svh - var(--nav-height-tablet));
        padding: 0 24px clamp(56px, 8vh, 76px);
    }

    .aquapure-intro__title {
        font-size: clamp(60px, 9vw, 100px);
    }

    .aquapure-intro__details {
        grid-template-columns: minmax(215px, 250px) minmax(0, 1fr);
        gap: 28px;
    }

    .aquapure-product,
    .aquapure-capabilities {
        padding-right: 20px;
        padding-left: 20px;
    }

    .aquapure-product__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aquapure-product-card {
        min-height: 650px;
    }

    .aquapure-product-card__media {
        height: clamp(260px, 34vw, 400px);
    }

    .aquapure-capabilities__header,
    .aquapure-parameters__heading,
    .aquapure-advantages__heading {
        grid-template-columns: 160px minmax(0, 1fr);
        gap: 40px;
    }

    .aquapure-key-features,
    .aquapure-components {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .aquapure-key-features__intro,
    .aquapure-components__summary {
        position: static;
    }

    .aquapure-advantages__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .aquapure-product__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .aquapure-intro {
        min-height: calc(100svh - var(--nav-height-mobile));
    }

    .aquapure-intro__inner {
        min-height: calc(100svh - var(--nav-height-mobile));
        padding: 0 20px 42px;
    }

    .aquapure-intro__title {
        margin-bottom: 56px;
        font-size: clamp(44px, 12vw, 76px);
        line-height: .92;
    }

    .aquapure-intro__details {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }

    .aquapure-intro__eyebrow,
    .aquapure-intro__category,
    .aquapure-intro__description {
        font-size: 12px;
        line-height: 1.35;
    }

    .aquapure-intro__category {
        margin-top: 24px;
    }

    .aquapure-video {
        padding-right: 16px;
        padding-bottom: 16px;
        padding-left: 16px;
    }

    .aquapure-video__screen {
        aspect-ratio: 4 / 5;
    }

    .aquapure-product {
        padding: 72px 16px 96px;
    }

    .aquapure-product-card {
        min-height: 610px;
        padding: 26px 24px 24px;
    }

    .aquapure-product-card__specs > div {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 16px;
    }

    .aquapure-capabilities {
        padding: 76px 16px 96px;
    }

    .aquapure-capabilities__header,
    .aquapure-parameters__heading,
    .aquapure-advantages__heading {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .aquapure-capabilities__heading h2 {
        font-size: clamp(42px, 13vw, 72px);
    }

    .aquapure-capabilities__heading > p {
        margin: 32px 0 0;
        font-size: 14px;
    }

    .aquapure-key-features__intro h3,
    .aquapure-components__summary h3 {
        font-size: 25px;
    }

    .aquapure-key-feature,
    .aquapure-component {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
        padding: 28px 0;
    }

    .aquapure-key-feature h4,
    .aquapure-component h4 {
        font-size: 22px;
    }

    .aquapure-key-feature p,
    .aquapure-component p {
        font-size: 13px;
    }

    .aquapure-parameters__heading h3,
    .aquapure-advantages__heading h3 {
        font-size: clamp(38px, 11vw, 64px);
    }

    .aquapure-parameters__grid {
        grid-template-columns: 1fr;
    }

    .aquapure-advantages__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .aquapure-intro__inner {
        padding-right: 16px;
        padding-bottom: 34px;
        padding-left: 16px;
    }

    .aquapure-intro__title {
        font-size: clamp(38px, 11vw, 58px);
    }

    .aquapure-video {
        padding-right: 12px;
        padding-bottom: 12px;
        padding-left: 12px;
    }

    .aquapure-product,
    .aquapure-capabilities {
        padding-right: 12px;
        padding-left: 12px;
    }

    .aquapure-product-card {
        --corner-cut: 22px;
        min-height: 560px;
        padding: 22px 18px;
    }

    .aquapure-product-card__media {
        height: 250px;
        margin: 22px 0;
    }

    .aquapure-product-card__specs > div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 0;
    }

    .aquapure-capabilities__heading h2 {
        font-size: clamp(36px, 11vw, 56px);
    }
}

/* =========================================================
   GLOBAL SEARCH DROPDOWN
   Controlled by assets/js/search.js
========================================================= */

.search-link {
    cursor: pointer;
}

/* =========================================================
   SEARCH PANEL
========================================================= */

.site-search-panel {
    position: fixed;
    top: 69px;
    left: 0;

    width: 100%;
    max-height: min(620px, calc(100vh - 69px));

    background: #000;
    color: #fff;

    z-index: 999;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-24px);

    transition:
        opacity 0.28s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0.45s;
}


/* OPEN STATE */
.site-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);

    transition:
        opacity 0.28s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0s;
}


/* =========================================================
   SEARCH INNER CONTAINER
========================================================= */

.site-search-inner {
    width: 100%;

    padding: 34px 42px 32px;

    max-height: min(620px, calc(100vh - 69px));

    overflow-y: auto;

    overscroll-behavior: contain;
}


/* =========================================================
   SEARCH TOP LINE
========================================================= */

.site-search-topline {
    display: flex;
    align-items: center;

    gap: 18px;
}


/* =========================================================
   SEARCH INPUT WRAPPER
========================================================= */

.site-search-field-wrap {
    position: relative;

    flex: 1;

    display: flex;
    align-items: center;

    gap: 14px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}


.site-search-field-wrap .material-icons {
    flex: 0 0 auto;

    color: #fff;

    font-size: 25px;
}


/* =========================================================
   SEARCH INPUT
========================================================= */

.site-search-input {
    width: 100%;
    height: 62px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #fff;

    font-family: "Geologica", sans-serif;

    font-size: clamp(24px, 2.2vw, 38px);

    font-weight: 400;

    letter-spacing: -0.02em;
}


.site-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}


/* REMOVE DEFAULT SEARCH X */
.site-search-input::-webkit-search-cancel-button {
    display: none;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.site-search-close {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    background: transparent;

    color: #fff;

    cursor: pointer;

    transition:
        background-color 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}


.site-search-close:hover {
    background: rgba(255, 255, 255, 0.10);

    border-color: rgba(255, 255, 255, 0.70);
}


.site-search-close:active {
    transform: scale(0.94);
}


.site-search-close .material-icons {
    font-size: 22px;
}


/* =========================================================
   SEARCH HELPER TEXT
========================================================= */

.site-search-helper {
    margin-top: 14px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   SEARCH RESULTS CONTAINER
========================================================= */

.site-search-results {
    margin-top: 26px;
}


/* =========================================================
   SEARCH STATUS
========================================================= */

.site-search-status {
    padding: 12px 0 2px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
}


/* =========================================================
   SEARCH RESULT GRID
========================================================= */

.site-search-result-list {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0 34px;
}


/* =========================================================
   INDIVIDUAL SEARCH RESULT
========================================================= */

.site-search-result {
    min-width: 0;

    display: grid;

    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 18px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: #fff;

    text-decoration: none;

    transition:
        opacity 0.2s ease,
        padding-left 0.25s ease;
}


.site-search-result:hover {
    padding-left: 8px;
}


/* =========================================================
   RESULT CONTENT
========================================================= */

.site-search-result-main {
    min-width: 0;
}


/* =========================================================
   RESULT META
========================================================= */

.site-search-result-meta {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 8px 12px;

    margin-bottom: 6px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.06em;
}


/* PRODUCT ID */
.site-search-result-code {
    color: #aab36a;

    font-weight: 600;
}


/* =========================================================
   RESULT TITLE
========================================================= */

.site-search-result-title {
    color: #fff;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.25;
}


/* =========================================================
   RESULT DESCRIPTION
========================================================= */

.site-search-result-description {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   RESULT ARROW
========================================================= */

.site-search-result-arrow {
    color: rgba(255, 255, 255, 0.72);

    font-size: 23px;

    transition: transform 0.25s ease;
}


.site-search-result:hover .site-search-result-arrow {
    transform: translate(3px, -3px);
}


/* =========================================================
   NO RESULTS
========================================================= */

.site-search-empty {
    padding: 24px 0 4px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.58);

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   SEARCH OPEN STATE
   Prevent navbar mega menus opening over search
========================================================= */

body.site-search-open .nav-dropdown {
    opacity: 0 !important;

    visibility: hidden !important;

    pointer-events: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .site-search-panel {
        top: 76px;

        max-height: calc(100vh - 76px);
    }


    .site-search-inner {
        padding: 28px 24px 30px;

        max-height: calc(100vh - 76px);
    }


    .site-search-result-list {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .site-search-panel {
        top: 70px;

        max-height: calc(100svh - 70px);
    }


    .site-search-inner {
        padding: 24px 18px 28px;

        max-height: calc(100svh - 70px);
    }


    .site-search-topline {
        gap: 12px;
    }


    .site-search-field-wrap {
        gap: 10px;
    }


    .site-search-field-wrap .material-icons {
        font-size: 22px;
    }


    .site-search-input {
        height: 56px;

        font-size: 24px;
    }


    .site-search-close {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }


    .site-search-helper {
        font-size: 11px;
    }


    .site-search-results {
        margin-top: 20px;
    }


    .site-search-result {
        padding: 16px 0;
    }


    .site-search-result-title {
        font-size: 17px;
    }


    .site-search-result-description {
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .site-search-inner {
        padding-left: 15px;
        padding-right: 15px;
    }


    .site-search-input {
        font-size: 21px;
    }


    .site-search-close {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }

}

/* =========================================================
   CUSTOM TEXT SELECTION COLOR
========================================================= */

::selection {
    background: #8A9460; /* light olive drab */
    color: #ffffff;
}

/* Firefox */
::-moz-selection {
    background: #8A9460;
    color: #ffffff;
}