/* =========================================================
   ARGUS 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;
    }
}

/* =========================================================
   ARGUS PAGE
   AI Autonomous ISR Drone
========================================================= */

.page-main {
    width: 100%;
    max-width: none;
    min-height: 0;
    background: #000000;
}

/* =========================================================
   INTRO
========================================================= */

.argus-intro {
    width: 100%;
    min-height: calc(92svh - var(--nav-height));
    overflow: hidden;
    background: #000000;
    color: #ffffff;
}

.argus-intro__inner {
    width: 100%;
    min-height: calc(92svh - var(--nav-height));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 clamp(28px, 2vw, 38px) clamp(68px, 8vh, 90px);
}

.argus-intro__title {
    max-width: 1500px;
    margin: 0 0 clamp(58px, 8vh, 80px);
    color: #ffffff;
    font-size: clamp(60px, 7vw, 122px);
    font-weight: 600;
    line-height: .9;
    letter-spacing: -.064em;
    text-transform: uppercase;
}

.argus-intro__details {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(250px, 280px) minmax(680px, 980px) 1fr;
    column-gap: clamp(26px, 2vw, 38px);
    align-items: start;
}

.argus-intro__classification {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.argus-intro__eyebrow,
.argus-intro__category {
    margin: 0;
    color: #ffffff;
    font-size: clamp(12px, .78vw, 15px);
    line-height: 1.15;
    letter-spacing: -.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.argus-intro__category {
    margin-top: clamp(34px, 5vh, 48px);
}

.argus-intro__category::before { content: "[ "; }
.argus-intro__category::after { content: " ]"; }

.argus-intro__description {
    max-width: 980px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(12px, .8vw, 15px);
    line-height: 1.5;
    letter-spacing: -.01em;
    text-transform: uppercase;
}

/* image */
.argus-image {
    width: 100%;
    padding: 0 25px 25px;
    background: #000000;
}

.argus-image__screen {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #101010;
    border: 1px solid #222222;
}

.argus-image__screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* shared sections */
.argus-features,
.argus-specs,
.argus-camera {
    width: 100%;
    padding-right: 25px;
    padding-left: 25px;
    background: #000000;
    color: #ffffff;
    border-top: 1px solid #242424;
}

.argus-features {
    padding-top: clamp(100px, 12vw, 180px);
    padding-bottom: clamp(115px, 14vw, 210px);
}

.argus-specs,
.argus-camera {
    padding-top: clamp(110px, 14vw, 220px);
    padding-bottom: clamp(115px, 14vw, 210px);
}

.argus-features__heading,
.argus-specs__heading,
.argus-camera__heading {
    display: grid;
    grid-template-columns: minmax(180px, 24%) minmax(0, 1fr);
    gap: clamp(40px, 8vw, 140px);
    align-items: start;
    padding-bottom: clamp(70px, 9vw, 126px);
}

.argus-features__heading > p,
.argus-specs__heading > p,
.argus-camera__heading > p {
    margin: 6px 0 0;
    color: #777777;
    font-size: 10px;
    letter-spacing: .1em;
}

.argus-features__heading h2,
.argus-specs__heading h2,
.argus-camera__heading h2 {
    max-width: 1150px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(48px, 6vw, 100px);
    font-weight: 500;
    line-height: .94;
    letter-spacing: -.06em;
}

.argus-features__heading div > p,
.argus-specs__heading div > p,
.argus-camera__heading div > p {
    max-width: 760px;
    margin: clamp(34px, 4vw, 58px) 0 0 auto;
    color: #9e9e9e;
    font-size: clamp(14px, 1.05vw, 18px);
    line-height: 1.58;
}

/* stacked features */
.argus-features__list {
    display: grid;
    gap: 1px;
    background: #303030;
    border-top: 1px solid #303030;
    border-bottom: 1px solid #303030;
}

.argus-feature {
    display: grid;
    grid-template-columns: minmax(230px, 31%) minmax(0, 1fr);
    min-height: clamp(220px, 20vw, 330px);
    background: #050505;
    border-bottom: 1px solid #303030;
}

.argus-feature:last-child { border-bottom: 0; }

.argus-feature figure {
    min-width: 0;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #101010;
}

.argus-feature figure img {
    width: 100%;
    height: 100%;
    min-height: clamp(220px, 20vw, 330px);
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .7s cubic-bezier(.16, 1, .3, 1);
}

.argus-feature:hover figure img { transform: scale(1.035); }

.argus-feature__content {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: clamp(18px, 3vw, 50px);
    align-items: center;
    padding: clamp(24px, 3vw, 50px);
}

.argus-feature__content > span {
    color: #686868;
    font-size: 10px;
    letter-spacing: .1em;
}

.argus-feature__content h3 {
    max-width: 920px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(25px, 2.4vw, 44px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.045em;
}

.argus-feature__content p {
    max-width: 860px;
    margin: 18px 0 0;
    color: #a3a3a3;
    font-size: clamp(12px, .95vw, 16px);
    line-height: 1.62;
}

/* spec cards */
.argus-spec-card,
.argus-camera-spec-card {
    padding: clamp(24px, 2.4vw, 42px);
    background: #050505;
    border: 1px solid #2d2d2d;
    color: #ffffff;
}

.argus-spec-card__header,
.argus-camera-spec-card__header {
    min-height: clamp(190px, 16vw, 280px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: clamp(22px, 2vw, 32px);
}

.argus-spec-card__header h3,
.argus-camera-spec-card__header h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(36px, 4.2vw, 76px);
    font-weight: 600;
    line-height: .93;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.argus-camera-spec-card__header h3 {
    font-size: clamp(26px, 3vw, 50px);
    max-width: 920px;
    line-height: .98;
}

.argus-spec-card__header p,
.argus-camera-spec-card__header p {
    margin: 18px 0 0;
    color: #a5a5a5;
    font-size: clamp(9px, .67vw, 11px);
    letter-spacing: .17em;
}

.argus-spec-table-wrap,
.argus-camera-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #555555;
    border-radius: 8px;
}

.argus-spec-table,
.argus-camera-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    color: #ffffff;
}

.argus-spec-table thead th,
.argus-camera-table thead th {
    padding: 17px 18px;
    background: #080808;
    border-right: 1px solid #444444;
    border-bottom: 1px solid #555555;
    color: #ffffff;
    font-size: clamp(12px, .9vw, 15px);
    font-weight: 600;
    text-align: left;
    letter-spacing: .04em;
}

.argus-spec-table thead th:first-child { width: 42%; }
.argus-spec-table thead th:last-child { width: 58%; border-right: 0; }

.argus-camera-table thead th:nth-child(1) { width: 18%; }
.argus-camera-table thead th:nth-child(2) { width: 36%; }
.argus-camera-table thead th:nth-child(3) { width: 46%; border-right: 0; }

.argus-spec-table tbody th,
.argus-spec-table tbody td,
.argus-camera-table tbody th,
.argus-camera-table tbody td {
    padding: 16px 18px;
    border-right: 1px solid #393939;
    border-bottom: 1px solid #393939;
    vertical-align: top;
    font-size: clamp(11px, .8vw, 14px);
    line-height: 1.5;
}

.argus-spec-table tbody th,
.argus-camera-table tbody th {
    color: #dedede;
    font-weight: 500;
    text-align: left;
}

.argus-spec-table tbody td,
.argus-camera-table tbody td {
    color: #f0f0f0;
}

.argus-spec-table tbody td,
.argus-spec-table thead th:last-child,
.argus-camera-table thead th:last-child,
.argus-camera-table tbody td:last-child {
    border-right: 0;
}

.argus-camera-table tbody th[scope="rowgroup"] {
    vertical-align: middle;
    text-transform: uppercase;
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.2;
}

.argus-spec-table tbody tr:last-child th,
.argus-spec-table tbody tr:last-child td,
.argus-camera-table tbody tr:last-child th,
.argus-camera-table tbody tr:last-child td {
    border-bottom: 0;
}

.argus-spec-card__footer,
.argus-camera-spec-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    color: #777777;
    font-size: 9px;
    letter-spacing: .11em;
}

/* camera visual */
.argus-camera__visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(18px, 2vw, 24px);
    margin-bottom: clamp(38px, 4vw, 58px);
}

.argus-camera__image {
    overflow: hidden;
    border: 1px solid #2d2d2d;
    background: #0e0e0e;
}

.argus-camera__image img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
}

.argus-camera__package {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(20px, 2vw, 28px);
    border: 1px solid #2d2d2d;
    background: #050505;
}

.argus-camera__package h3 {
    margin: 0 0 16px;
    font-size: clamp(20px, 1.6vw, 28px);
    font-weight: 600;
    letter-spacing: -.03em;
}

.argus-camera__package ul {
    margin: 0;
    padding-left: 18px;
    color: #b9b9b9;
}

.argus-camera__package li {
    margin: 0 0 10px;
    font-size: clamp(12px, .9vw, 15px);
    line-height: 1.55;
}

/* responsive */
@media (min-width: 1600px) {
    .argus-intro__title { font-size: 122px; }
    .argus-intro__details { grid-template-columns: 270px 980px 1fr; }
}

@media (max-width: 1100px) {
    .argus-intro { min-height: calc(100svh - var(--nav-height-tablet)); }
    .argus-intro__inner {
        min-height: calc(100svh - var(--nav-height-tablet));
        padding: 0 24px clamp(56px, 8vh, 76px);
    }
    .argus-intro__title { font-size: clamp(50px, 8.4vw, 92px); }
    .argus-intro__details { grid-template-columns: minmax(215px, 250px) minmax(0, 1fr); gap: 28px; }
    .argus-features, .argus-specs, .argus-camera { padding-right: 20px; padding-left: 20px; }
    .argus-features__heading, .argus-specs__heading, .argus-camera__heading { grid-template-columns: 160px minmax(0, 1fr); gap: 40px; }
    .argus-feature { grid-template-columns: minmax(210px, 36%) minmax(0, 1fr); }
    .argus-camera__visual { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .argus-intro { min-height: calc(100svh - var(--nav-height-mobile)); }
    .argus-intro__inner { min-height: calc(100svh - var(--nav-height-mobile)); padding: 0 20px 42px; }
    .argus-intro__title { margin-bottom: 50px; font-size: clamp(39px, 10.2vw, 64px); line-height: .92; }
    .argus-intro__details { grid-template-columns: 1fr; row-gap: 34px; }
    .argus-intro__eyebrow, .argus-intro__category, .argus-intro__description { font-size: 12px; }
    .argus-intro__category { margin-top: 24px; }
    .argus-image { padding-right: 16px; padding-bottom: 16px; padding-left: 16px; }
    .argus-image__screen { aspect-ratio: 4 / 5; }
    .argus-features, .argus-specs, .argus-camera { padding-right: 16px; padding-left: 16px; }
    .argus-features__heading, .argus-specs__heading, .argus-camera__heading { grid-template-columns: 1fr; gap: 32px; }
    .argus-features__heading h2, .argus-specs__heading h2, .argus-camera__heading h2 { font-size: clamp(40px, 12vw, 68px); }
    .argus-features__heading div > p, .argus-specs__heading div > p, .argus-camera__heading div > p { margin: 28px 0 0; font-size: 14px; }
    .argus-feature { grid-template-columns: 130px minmax(0, 1fr); min-height: 200px; }
    .argus-feature figure img { min-height: 200px; }
    .argus-feature__content { grid-template-columns: 28px minmax(0, 1fr); gap: 10px; padding: 20px 16px; }
    .argus-feature__content h3 { font-size: clamp(20px, 5.8vw, 31px); }
    .argus-feature__content p { margin-top: 11px; font-size: 12px; }
    .argus-spec-card, .argus-camera-spec-card { padding: 20px 14px; }
    .argus-camera__package { padding: 18px; }
}

@media (max-width: 480px) {
    .argus-intro__inner { padding-right: 16px; padding-bottom: 34px; padding-left: 16px; }
    .argus-intro__title { font-size: clamp(34px, 9vw, 48px); }
    .argus-image { padding-right: 12px; padding-bottom: 12px; padding-left: 12px; }
    .argus-features, .argus-specs, .argus-camera { padding-right: 12px; padding-left: 12px; }
    .argus-feature { grid-template-columns: 108px minmax(0, 1fr); }
    .argus-feature__content { grid-template-columns: 1fr; padding: 17px 12px; }
    .argus-feature__content > span { display: none; }
    .argus-spec-card, .argus-camera-spec-card { padding-right: 10px; padding-left: 10px; }
    .argus-spec-card__header h3 { font-size: clamp(30px, 9vw, 48px); }
    .argus-camera-spec-card__header h3 { font-size: clamp(24px, 7vw, 36px); }
    .argus-spec-table { min-width: 620px; }
    .argus-camera-table { min-width: 900px; }
}

/* =========================================================
   ARGUS TIER NAVBAR — DARK MODE
   COLOR-ONLY OVERRIDES
   Existing navbar sizes and spacing remain unchanged:
   Desktop 69px / Tablet 76px / Mobile 70px
========================================================= */

/* Main navbar */
.navbar,
.navbar.defense-active {
    background: #000000;
    color: #ffffff;
}

/* Convert the existing dark logo artwork to white */
.nav-logo img {
    filter: brightness(0) invert(1);
}

/* Desktop navigation text */
.nav-menu a,
.nav-actions a,
.nav-item > a,
.search-link,
.company-link,
.defense-link,
.defense-link span {
    color: #ffffff;
}

.nav-menu a:hover,
.nav-actions a:hover,
.nav-item > a:hover,
.search-link:hover,
.company-link:hover,
.defense-link:hover,
.defense-link:hover span {
    color: #a8a8a8;
}

/* Active tier state */
.nav-link-active {
    color: #ffffff !important;
}

.nav-link-active::after {
    background: #ffffff;
}

/* Navbar separator */
.nav-separator {
    background: #454545;
}

/* Search and navigation icons */
.search-link .material-icons,
.company-icon,
.list-icon,
.icon-plus,
.icon-minus,
.list-icon .icon-plus,
.list-icon .icon-minus {
    color: #ffffff;
}

/* All desktop dropdown panels */
.nav-dropdown,
.company-dropdown,
.defense-dropdown {
    background: #000000;
    color: #ffffff;
    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
}

/* Dropdown headings and paragraph copy */
.nav-dropdown .dropdown-info h4,
.nav-dropdown .dropdown-categories h4,
.nav-dropdown .company-col h4,
.nav-dropdown .dropdown-info p,
.nav-dropdown .company-social,
.nav-dropdown .company-social h4,
.nav-dropdown .company-social p {
    color: #ffffff;
}

/* Dropdown items and links */
.nav-dropdown .dropdown-categories 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: #ffffff;
}

.nav-dropdown .dropdown-categories 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: #a8a8a8;
}

/* Keep the dropdown plus/minus symbols white */
.nav-dropdown .icon-plus,
.nav-dropdown .icon-minus,
.nav-dropdown .list-icon .icon-plus,
.nav-dropdown .list-icon .icon-minus {
    color: #ffffff;
}

/* Mobile menu */
.mobile-menu-btn,
.mobile-menu-btn .material-icons {
    color: #ffffff;
}

.mobile-menu-panel {
    background: #000000;
    border-top: 1px solid #242424;
}

.mobile-menu-panel a {
    color: #ffffff;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a.active,
.mobile-menu-panel a[aria-current="page"] {
    color: #a8a8a8;
}

/* Prevent responsive rules from restoring white backgrounds */
@media (max-width: 1100px) {
    .navbar,
    .navbar.defense-active {
        background: #000000;
    }

    .nav-logo img {
        filter: brightness(0) invert(1);
    }

    .mobile-menu-btn,
    .mobile-menu-btn .material-icons {
        color: #ffffff;
    }

    .mobile-menu-panel {
        background: #000000;
        border-top-color: #242424;
    }
}

@media (max-width: 768px) {
    .navbar,
    .navbar.defense-active {
        background: #000000;
    }

    .mobile-menu-panel {
        background: #000000;
    }
}

/* =========================================================
   MOBILE NAVBAR SCROLL HIDE / SHOW FIX
   Allows the existing JavaScript nav-hidden class to work
   on tablet and mobile, while keeping the navbar visible
   whenever the mobile navigation panel is open.
========================================================= */

@media (max-width: 1100px) {
    .navbar.nav-hidden {
        transform: translateY(-105%);
        pointer-events: none;
    }

    .navbar:not(.nav-hidden) {
        transform: translateY(0);
        pointer-events: auto;
    }

    /*
       Keep the navbar and menu button accessible while the
       mobile menu is open, even if nav-hidden was previously set.
    */
    body.mobile-menu-open .navbar,
    body.mobile-menu-open .navbar.nav-hidden {
        transform: translateY(0);
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    .navbar.nav-hidden {
        transform: translateY(-105%);
    }

    body.mobile-menu-open .navbar,
    body.mobile-menu-open .navbar.nav-hidden {
        transform: translateY(0);
    }
}


/* =========================================================
   ARGUS AISR-2 PAGE EXTENSIONS
========================================================= */

/* Larger key-feature imagery with image left / content right */
.argus-feature--large {
    grid-template-columns: minmax(420px, 46%) minmax(0, 1fr);
    min-height: clamp(300px, 29vw, 470px);
}

.argus-feature--large figure {
    min-height: clamp(300px, 29vw, 470px);
}

.argus-feature--large figure img {
    min-height: 100%;
    object-fit: cover;
}

.argus-feature--large .argus-feature__content {
    padding: clamp(34px, 4vw, 66px);
}

.argus-feature--large .argus-feature__content h3 {
    font-size: clamp(24px, 2.35vw, 42px);
}

.argus-feature--large .argus-feature__content p {
    max-width: 720px;
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.68;
}

/* =========================================================
   SUBSYSTEM COMPONENTS
========================================================= */

.argus-subsystems {
    width: 100%;
    padding:
        clamp(110px, 14vw, 220px)
        25px
        clamp(115px, 14vw, 210px);
    background: #000000;
    color: #ffffff;
    border-top: 1px solid #242424;
}

.argus-subsystems__heading {
    display: grid;
    grid-template-columns: minmax(180px, 24%) minmax(0, 1fr);
    gap: clamp(40px, 8vw, 140px);
    align-items: start;
    padding-bottom: clamp(70px, 9vw, 126px);
}

.argus-subsystems__heading > p {
    margin: 6px 0 0;
    color: #777777;
    font-size: 10px;
    letter-spacing: .1em;
}

.argus-subsystems__heading h2 {
    max-width: 1200px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(48px, 6vw, 100px);
    font-weight: 500;
    line-height: .94;
    letter-spacing: -.06em;
}

.argus-subsystems__heading div > p {
    max-width: 760px;
    margin: clamp(34px, 4vw, 58px) 0 0 auto;
    color: #9e9e9e;
    font-size: clamp(14px, 1.05vw, 18px);
    line-height: 1.58;
}

.argus-subsystem {
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
    min-height: clamp(500px, 42vw, 720px);
    margin-bottom: 1px;
    background: #050505;
    border: 1px solid #292929;
}

.argus-subsystem--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
}

.argus-subsystem__media {
    min-width: 0;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(28px, 4vw, 70px);
    overflow: hidden;
    background: #f3f3f3;
}

.argus-subsystem__media img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    display: block;
    object-fit: contain;
    object-position: center;
}

.argus-subsystem__details {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 4vw, 64px);
}

.argus-subsystem__title {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-bottom: clamp(26px, 3vw, 44px);
}

.argus-subsystem__title > span {
    padding-top: 7px;
    color: #6f6f6f;
    font-size: 10px;
    letter-spacing: .12em;
}

.argus-subsystem__title h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 3.2vw, 56px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.045em;
}

.argus-subsystem__title p {
    margin: 12px 0 0;
    color: #9f9f9f;
    font-size: clamp(12px, .9vw, 15px);
    line-height: 1.5;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.argus-subsystem__specs {
    margin: 0;
    border-top: 1px solid #363636;
}

.argus-subsystem__specs > div {
    display: grid;
    grid-template-columns: minmax(145px, .78fr) minmax(0, 1.22fr);
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid #363636;
}

.argus-subsystem__specs dt,
.argus-subsystem__specs dd {
    margin: 0;
    font-size: clamp(11px, .82vw, 14px);
    line-height: 1.48;
}

.argus-subsystem__specs dt {
    color: #dedede;
    font-weight: 600;
    letter-spacing: .035em;
}

.argus-subsystem__specs dd {
    color: #a9a9a9;
}

/* General technical table */
.argus-specs {
    padding-top: clamp(110px, 14vw, 220px);
    padding-bottom: clamp(115px, 14vw, 210px);
}

/* =========================================================
   RESPONSIVE ARGUS EXTENSIONS
========================================================= */

@media (max-width: 1100px) {
    .argus-feature--large {
        grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
    }

    .argus-subsystems {
        padding-right: 20px;
        padding-left: 20px;
    }

    .argus-subsystems__heading {
        grid-template-columns: 160px minmax(0, 1fr);
        gap: 40px;
    }

    .argus-subsystem,
    .argus-subsystem--reverse {
        grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
    }
}

@media (max-width: 768px) {
    .argus-feature--large {
        grid-template-columns: 1fr;
    }

    .argus-feature--large figure,
    .argus-feature--large figure img {
        min-height: 300px;
    }

    .argus-subsystems {
        padding-right: 16px;
        padding-left: 16px;
    }

    .argus-subsystems__heading {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .argus-subsystems__heading h2 {
        font-size: clamp(40px, 12vw, 68px);
    }

    .argus-subsystems__heading div > p {
        margin: 28px 0 0;
        font-size: 14px;
    }

    .argus-subsystem,
    .argus-subsystem--reverse {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .argus-subsystem--reverse .argus-subsystem__details {
        order: 2;
    }

    .argus-subsystem--reverse .argus-subsystem__media {
        order: 1;
    }

    .argus-subsystem__media {
        min-height: 360px;
        padding: 30px;
    }

    .argus-subsystem__details {
        padding: 30px 22px 38px;
    }

    .argus-subsystem__specs > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .argus-subsystems {
        padding-right: 12px;
        padding-left: 12px;
    }

    .argus-subsystem__media {
        min-height: 290px;
        padding: 22px;
    }

    .argus-subsystem__title {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .argus-subsystem__title > span {
        display: none;
    }

    .argus-subsystem__title h3 {
        font-size: 32px;
    }
}


/* =========================================================
   ARGUS — CLICKABLE PRODUCT DROPDOWNS
========================================================= */

.tier-product-dropdown li {
    margin-bottom: 5px;
}

.tier-product-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;

    color: inherit;
    text-decoration: none;

    font-size: inherit;
    font-weight: inherit;
    line-height: 1.25;
    text-transform: none;

    transition: color .25s ease;
}

.tier-product-dropdown li a:hover {
    color: #a8a8a8;
}

.tier-product-dropdown li a:hover .icon-plus {
    opacity: 0;
    transform: rotate(180deg);
}

.tier-product-dropdown li a:hover .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

@media (min-width: 1101px) {
    .tier-product-dropdown li a {
        font-size: 12px;
    }
}

/* =========================================================
   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;
}