/* =========================================================
   DELLA DEFENSE
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    padding-top: 0;
    background: #000;
    font-family: "Geologica", sans-serif;
}

img,
video {
    max-width: 100%;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 0%;
    height: 3px;
    background: #4b5320;
    pointer-events: none;
    transition:
        width .25s ease,
        opacity .3s ease;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 69px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    background: #000;
    transition:
        background-color .6s ease,
        transform .35s ease;
}

.navbar.defense-active {
    background: #3d4519;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.navbar.nav-hidden .nav-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* =========================================================
   NAV LOGO
========================================================= */

.nav-logo {
    flex: 1;
    flex-shrink: 0;
    min-width: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    display: block;
    width: auto !important;
    height: 45px;
    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   NAV MENU
========================================================= */

.nav-menu {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
}

.nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 36px;
}

.nav-item {
    position: relative;
    height: 69px;
    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: #fff;
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
}

.nav-menu > .nav-item > a:hover,
.nav-actions > a:hover {
    color: #808080;
}

.nav-separator {
    width: 1px;
    height: 19px;
    background: #a8a8a7;
}

.defense-link span {
    color: #fff;
    font-weight: 700;
}

.search-link {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.search-link .material-icons {
    font-size: 16px;
}


/* =========================================================
   PLUS / MINUS ICONS
========================================================= */

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.company-icon,
.list-icon {
    position: relative;
    width: 11px;
    height: 11px;
    display: inline-block;
    flex-shrink: 0;
}

.icon-plus,
.icon-minus,
.list-icon .icon-plus,
.list-icon .icon-minus {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    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(0);
}

.icon-minus,
.list-icon .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}


/* =========================================================
   NAV DROPDOWN
========================================================= */

.nav-dropdown {
    position: fixed;
    top: 69px;
    left: 0;
    width: 100%;
    height: 288px;
    display: flex;
    gap: 176px;
    padding: 44px 56px;
    background: #000;
    color: #fff;
    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
    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;
}


/* Product dropdowns need additional height */
.tier-products-dropdown {
    height: 320px;
    min-height: 320px;
    padding-top: 40px;
    padding-bottom: 40px;
}


/* =========================================================
   DROPDOWN INFORMATION
========================================================= */

.dropdown-info {
    width: 336px;
    flex-shrink: 0;
}

.dropdown-info h4,
.dropdown-categories h4 {
    margin-bottom: 28px;
    font-size: 13px;
}

.dropdown-info p {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
}

.dropdown-categories {
    min-width: 0;
}

.dropdown-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* =========================================================
   CLICKABLE DROPDOWN PRODUCTS
========================================================= */

.dropdown-categories li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.dropdown-categories li > a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font: inherit;
    line-height: 1.35;
    white-space: normal;
    cursor: pointer;
    transition: color .25s ease;
}

.dropdown-categories li > a:hover {
    color: #808080;
}

.dropdown-categories li > a .list-icon {
    flex: 0 0 11px;
}

.dropdown-categories li:hover .icon-plus,
.company-col li:hover .icon-plus {
    opacity: 0;
    transform: rotate(180deg);
}

.dropdown-categories li:hover .icon-minus,
.company-col li:hover .icon-minus {
    opacity: 1;
    transform: rotate(0);
}


/* =========================================================
   DELLA GROUP DROPDOWN
========================================================= */

.defense-dropdown {
    height: 288px;
    min-height: 288px;
    background: #3d4519;
}

.defense-dropdown .dropdown-info h4,
.defense-dropdown .dropdown-categories h4,
.defense-dropdown .dropdown-info p,
.defense-dropdown .dropdown-categories li,
.defense-dropdown .dropdown-categories li > a {
    color: #fff;
}

.defense-dropdown .dropdown-categories li > a:hover {
    color: #d0d0d0;
}


/* =========================================================
   COMPANY DROPDOWN
========================================================= */

.company-item {
    position: relative;
}

.company-dropdown {
    height: 288px;
    min-height: 288px;
    gap: 96px;
}

.company-social {
    margin-top: 32px;
}

.company-social h4 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 10px;
}

.company-social .ig {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.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-col h4 {
    margin-bottom: 28px;
    color: #fff;
    font-size: 13px;
}

.company-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-col li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: #fff;
    font-size: 14px;
}

.company-col li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    white-space: normal;
}

.company-col li > a:hover {
    color: #808080;
}


/* =========================================================
   PAGE
========================================================= */

.page-content {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
}

.page-content.blur {
    filter: blur(6px);
    pointer-events: none;
    transition: filter .3s ease;
}


/* =========================================================
   HERO
========================================================= */

.first-page {
    width: 100%;
    padding: 0 clamp(12px,1.5vw,28px) clamp(12px,1.5vw,28px);
    background: #000;
}

.hero-placeholder {
    width: 100%;
    height: auto;
    min-height: clamp(460px,68vh,780px);
    aspect-ratio: 16 / 8.2;
    overflow: hidden;
    background: #0b0b0b;
    border-radius: 3px;
}

.hero-placeholder__picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-placeholder__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   SECTOR GRID
========================================================= */

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: clamp(14px,1.6vw,30px);
    padding: 0 clamp(12px,1.5vw,28px) clamp(12px,1.5vw,28px);
    background: #000;
}

.sector {
    position: relative;
    width: 100%;
    height: auto;
    min-height: clamp(340px,30vw,500px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 3px;
    background: #b3b3b3;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.sector-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 1s ease,
        filter 1s ease;
}

.sector::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.8),
            rgba(0,0,0,.35),
            rgba(0,0,0,.1)
        );
}

.sector:hover .sector-img {
    transform: scale(1.05);
    filter: brightness(.85);
}


/* =========================================================
   SECTOR TEXT
========================================================= */

.sector-content {
    position: absolute;
    left: clamp(22px,3vw,38px);
    right: clamp(22px,3vw,38px);
    bottom: clamp(24px,3vw,38px);
    z-index: 2;
    max-width: 520px;
    transition:
        transform .9s cubic-bezier(.16,1,.3,1);
}

.sector:hover .sector-content {
    transform: translateY(-22px);
}

.sector h3,
.sector p {
    color: #fff;
    text-shadow:
        0 2px 8px rgba(0,0,0,.6),
        0 1px 2px rgba(0,0,0,.8);
}

.sector h3 {
    margin-bottom: 8px;
    font-size: clamp(24px,2.5vw,30px);
    font-weight: 700;
}

.sector p {
    flex: 1;
    margin: 0;
    font-size: clamp(15px,1.5vw,20px);
    font-weight: 400;
    line-height: 1.25;
    opacity: 0;
    transform: translateY(18px);
    clip-path: inset(0 0 100% 0);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.16,1,.3,1),
        clip-path .9s cubic-bezier(.16,1,.3,1);
}

.sector:hover p {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0);
}

.sector-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sector-arrow {
    color: #fff;
    font-size: 26px;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .9s ease,
        transform .3s ease;
}

.sector:hover .sector-arrow {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   SUPPORT / STRATEGIC ENGAGEMENT GRID
========================================================= */

.sector-grid--additional {
    grid-template-columns: repeat(2,minmax(0,1fr));
}

.sector-grid--additional .sector {
    aspect-ratio: 16 / 8.5;
    min-height: clamp(340px,29vw,500px);
}

.sector-grid--additional .sector-content {
    max-width: 620px;
}


/* =========================================================
   DELLA DEFENSE SUSTAINMENT MESSAGE
========================================================= */

.defense-sustainment {
    position: relative;
    width: 100%;
    min-height: clamp(420px,35vw,610px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(70px,8vw,118px) 28px;
    background: #0d0e0e;
    color: #fff;
    text-align: center;
}

.defense-sustainment::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
    background-size: 32px 32px;
    opacity: .85;
}

.defense-sustainment::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 50% -28%,
            rgba(255,255,255,.08),
            transparent 40%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,.18),
            rgba(0,0,0,.05) 26%,
            rgba(0,0,0,.18)
        );
}

.defense-sustainment__inner {
    position: relative;
    z-index: 2;
    width: min(1220px,100%);
    margin: 0 auto;
}

.defense-sustainment__logo {
    display: block;
    width: auto !important;
    height: clamp(54px,5vw,78px);
    margin: 0 auto clamp(34px,3.6vw,52px);
    object-fit: contain;
}

.defense-sustainment__title {
    margin: 0;
    color: #fff;
    font-family: "Geologica", sans-serif;
    font-size: clamp(34px,4vw,64px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: .015em;
    text-transform: uppercase;
}

.defense-sustainment__title span,
.defense-sustainment__title strong {
    display: block;
}

.defense-sustainment__title strong {
    margin-top: clamp(8px,1vw,14px);
    color: #ff1111;
    font-weight: 700;
}

.defense-sustainment__subline {
    margin: clamp(28px,3vw,44px) 0 0;
    color: #fff;
    font-size: clamp(14px,1.35vw,20px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.defense-sustainment__green {
    color: #28e33f;
    font-weight: 600;
}

.defense-sustainment__red {
    color: #ff1111;
    font-weight: 600;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    width: 100%;
    min-height: 336px;
    display: grid;
    grid-template-columns: 1.3fr 1.4fr;
    gap: 64px;
    padding: 37px 26px 29px;
    background: #000;
    color: #fff;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: block;
    width: auto !important;
    height: 36px;
    margin-bottom: 124px;
    object-fit: contain;
}

.footer-addresses {
    margin-top: 0;
}

.footer-address h4 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.footer-address p {
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
}

.footer-line {
    width: 176px;
    height: 1px;
    margin: 14px 0;
    background: #999;
}

.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;
    padding: 0;
    margin-bottom: 27px;
    border: 0;
    background: transparent;
    color: #9a9a9a;
    font-family: "Geologica", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    pointer-events: none;
}

.footer-toggle .footer-icon {
    display: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.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: #fff;
    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,
        border-color .25s ease;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #3d4519;
    border-color: #3d4519;
}

.scroll-to-top:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

body.mobile-menu-open .scroll-to-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-menu-btn {
    display: none;
    position: relative;
    z-index: 1002;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.mobile-menu-btn .material-icons {
    font-size: 34px;
}

.mobile-menu-panel {
    position: fixed;
    top: 76px;
    left: 0;
    z-index: 999;
    width: 100%;
    height: calc(100dvh - 76px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 30px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #000;
    transform: translateX(100%);
    transition: transform .35s ease;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-menu-panel a {
    color: #fff;
    text-decoration: none;
    font-family: "Geologica", sans-serif;
    font-size: 22px;
    font-weight: 500;
}

.mobile-menu-panel a:hover {
    color: #808080;
}

body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
}


/* =========================================================
   GLOBAL SEARCH
========================================================= */

.site-search-panel {
    position: fixed;
    top: 69px;
    left: 0;
    z-index: 999;
    width: 100%;
    max-height: min(620px,calc(100vh - 69px));
    background: #000;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-24px);
    transition:
        opacity .28s ease,
        transform .45s cubic-bezier(.16,1,.3,1),
        visibility 0s linear .45s;
}

.site-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
        opacity .28s ease,
        transform .45s cubic-bezier(.16,1,.3,1),
        visibility 0s;
}

.site-search-inner {
    width: 100%;
    max-height: min(620px,calc(100vh - 69px));
    padding: 34px 42px 32px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.site-search-topline {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-search-field-wrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,.72);
}

.site-search-field-wrap .material-icons {
    flex: 0 0 auto;
    color: #fff;
    font-size: 25px;
}

.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: -.02em;
}

.site-search-input::placeholder {
    color: rgba(255,255,255,.45);
}

.site-search-input::-webkit-search-cancel-button {
    display: none;
}

.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,.25);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition:
        background-color .22s ease,
        border-color .22s ease,
        transform .22s ease;
}

.site-search-close:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.7);
}

.site-search-close:active {
    transform: scale(.94);
}

.site-search-close .material-icons {
    font-size: 22px;
}

.site-search-helper {
    margin-top: 14px;
    color: rgba(255,255,255,.48);
    font-size: 12px;
    line-height: 1.5;
}

.site-search-results {
    margin-top: 26px;
}

.site-search-status {
    padding: 12px 0 2px;
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

.site-search-result-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 0 34px;
}

.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,.12);
    color: #fff;
    text-decoration: none;
    transition:
        opacity .2s ease,
        padding-left .25s ease;
}

.site-search-result:hover {
    padding-left: 8px;
}

.site-search-result-main {
    min-width: 0;
}

.site-search-result-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 6px;
    color: rgba(255,255,255,.48);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.site-search-result-code {
    color: #aab36a;
    font-weight: 600;
}

.site-search-result-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
}

.site-search-result-description {
    margin-top: 5px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    line-height: 1.4;
}

.site-search-result-arrow {
    color: rgba(255,255,255,.72);
    font-size: 23px;
    transition: transform .25s ease;
}

.site-search-result:hover .site-search-result-arrow {
    transform: translate(3px,-3px);
}

.site-search-empty {
    padding: 24px 0 4px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 1.55;
}

body.site-search-open .nav-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1440px) {
    .navbar {
        padding-left: 28px;
        padding-right: 28px;
    }

    .first-page,
    .sector-grid {
        padding-left: 28px;
        padding-right: 28px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    body {
        padding-top: 76px;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 76px;
        padding: 0 22px;
        justify-content: space-between;
    }

    .nav-logo {
        flex: unset;
    }

    .nav-logo img {
        width: auto !important;
        max-width: min(72vw,320px);
        height: 44px;
    }

    .nav-menu,
    .nav-actions,
    .nav-dropdown {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .page-content.blur {
        filter: none;
        pointer-events: auto;
    }

    .hero-placeholder {
        min-height: clamp(480px,62vw,680px);
    }

    .sector-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .sector.infrastructure {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 7;
    }

    .sector-grid--additional {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .sector-grid--additional .sector {
        grid-column: auto;
        aspect-ratio: 4 / 3;
        min-height: clamp(340px,43vw,470px);
    }

    .defense-sustainment {
        min-height: 470px;
        padding-right: 22px;
        padding-left: 22px;
    }

    .defense-sustainment__title {
        font-size: clamp(34px,5.4vw,56px);
    }

    .defense-sustainment__subline {
        font-size: clamp(13px,1.8vw,18px);
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-logo {
        margin-bottom: 60px;
    }

    .footer-columns {
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: 38px;
    }

    .scroll-to-top {
        right: 20px;
        bottom: 20px;
        width: 46px;
        height: 46px;
    }

    .site-search-panel {
        top: 76px;
        max-height: calc(100vh - 76px);
    }

    .site-search-inner {
        max-height: calc(100vh - 76px);
        padding: 28px 24px 30px;
    }

    .site-search-result-list {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    body {
        padding-top: 70px;
    }

    .navbar {
        height: 70px;
        padding: 0 16px;
    }

    .nav-logo img {
        width: auto !important;
        max-width: min(70vw,280px);
        height: 40px;
    }

    .mobile-menu-panel {
        top: 70px;
        height: calc(100dvh - 70px);
        padding: 28px 20px;
    }

    .first-page {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 14px;
    }

    .hero-placeholder {
        min-height: clamp(500px,82svh,730px);
        aspect-ratio: 9 / 13;
        border-radius: 0;
    }

    .sector-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 14px 14px;
    }

    .sector,
    .sector.infrastructure {
        grid-column: auto;
        min-height: clamp(360px,105vw,500px);
        aspect-ratio: 4 / 5;
    }

    .sector-content {
        left: 22px;
        right: 22px;
        bottom: 24px;
        transform: none;
    }

    .sector p,
    .sector-arrow {
        opacity: 1;
        transform: none;
        clip-path: none;
    }

    .sector:hover .sector-content,
    .sector:hover p,
    .sector:hover .sector-arrow {
        transform: none;
    }

    .sector-grid--additional {
        grid-template-columns: 1fr;
    }

    .sector-grid--additional .sector {
        min-height: clamp(360px,105vw,500px);
        aspect-ratio: 4 / 5;
    }

    .defense-sustainment {
        min-height: 430px;
        padding: 72px 18px;
    }

    .defense-sustainment__logo {
        height: 52px;
        margin-bottom: 34px;
    }

    .defense-sustainment__title {
        font-size: clamp(30px,8vw,46px);
        line-height: 1.1;
    }

    .defense-sustainment__title strong {
        margin-top: 12px;
    }

    .defense-sustainment__subline {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(12px,3.4vw,16px);
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 38px 22px;
    }

    .footer-logo {
        height: 38px;
        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: #9a9a9a;
        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%;
        align-items: center;
        justify-content: space-between;
        padding: 26px 0;
        margin: 0;
        font-size: 14px;
        cursor: pointer;
        pointer-events: auto;
    }

    .footer-toggle .footer-icon {
        display: inline-flex;
        color: #fff;
        font-size: 28px;
        line-height: 1;
        transition:
            transform .35s cubic-bezier(.16,1,.3,1);
    }

    .footer-col.active .footer-icon {
        transform: rotate(180deg);
    }

    .footer-links {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        gap: 8px;
        transition:
            max-height .45s cubic-bezier(.16,1,.3,1),
            opacity .35s ease;
    }

    .footer-col.active .footer-links {
        max-height: 280px;
        opacity: 1;
        padding-bottom: 22px;
    }

    .footer-links a {
        font-size: 21px;
        font-weight: 500;
        line-height: 1.45;
    }

    .scroll-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }

    .site-search-panel {
        top: 70px;
        max-height: calc(100svh - 70px);
    }

    .site-search-inner {
        max-height: calc(100svh - 70px);
        padding: 24px 18px 28px;
    }

    .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) {

    .nav-logo img {
        max-width: 68vw;
        height: 36px;
    }

    .hero-placeholder {
        min-height: 520px;
    }

    .sector,
    .sector-grid--additional .sector {
        min-height: 350px;
    }

    .defense-sustainment {
        min-height: 390px;
        padding: 60px 14px;
    }

    .defense-sustainment__logo {
        height: 46px;
        margin-bottom: 30px;
    }

    .defense-sustainment__title {
        font-size: clamp(27px,8.5vw,38px);
    }

    .defense-sustainment__subline {
        font-size: 12px;
        letter-spacing: .02em;
    }

    .footer {
        padding-left: 18px;
        padding-right: 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;
    }

    .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;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .mobile-menu-panel,
    .scroll-to-top {
        transition: none;
    }
}


/* =========================================================
   CUSTOM TEXT SELECTION
========================================================= */

::selection {
    background: #8a9460;
    color: #fff;
}

::-moz-selection {
    background: #8a9460;
    color: #fff;
}