.hero {
    overflow: hidden;

    color: white;

    background:
        radial-gradient(
            circle at 70% 35%,
            rgba(92, 112, 74, .28),
            transparent 32%
        ),
        linear-gradient(
            110deg,
            #09100c 0%,
            #152019 60%,
            #202c21 100%
        );
}


.hero-layout {
    min-height: 610px;

    display: grid;
    grid-template-columns:
        minmax(0, .92fr)
        minmax(520px, 1.08fr);

    align-items: stretch;
}


.hero-copy {
    position: relative;

    z-index: 2;

    align-self: center;

    padding: 74px 50px 70px 0;
}


.hero-eyebrow {
    margin-bottom: 22px;

    color: #b4bd85;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .15em;
    text-transform: uppercase;
}


.hero h1 {
    max-width: 720px;

    margin: 0;

    font-family:
        "Arial Narrow",
        "Roboto Condensed",
        Arial,
        sans-serif;

    font-size: clamp(52px, 5.2vw, 82px);
    line-height: .91;

    letter-spacing: -.035em;
    text-transform: uppercase;
}


.hero h1 span {
    display: block;

    color: #aeb77a;
}


.hero-copy > p {
    max-width: 650px;

    margin: 27px 0 29px;

    color: #d5dbd5;

    font-size: 17px;
    line-height: 1.55;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


.hero-trust {
    max-width: 700px;

    margin-top: 44px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}


.hero-trust > div {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 11px;

    padding-right: 12px;

    border-right:
        1px solid rgba(255,255,255,.12);
}


.hero-trust > div:last-child {
    border-right: 0;
}


.trust-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: grid;
    place-items: center;

    color: #c4cc8c;

    font-size: 18px;
}


.hero-trust p {
    margin: 0;

    display: flex;
    flex-direction: column;
}


.hero-trust strong {
    font-size: 11px;

    text-transform: uppercase;
}


.hero-trust small {
    margin-top: 3px;

    color: #9da59e;

    font-size: 10px;
}


.hero-media {
    position: relative;

    min-height: 610px;

    overflow: hidden;
}


.hero-media::before {
    content: "";

    position: absolute;
    z-index: 1;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            #142019 0%,
            rgba(20, 32, 25, .25) 28%,
            rgba(0,0,0,.02) 70%
        );
}


.hero-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: 55% center;
}


.hero-media-label {
    position: absolute;
    z-index: 2;

    right: 24px;
    bottom: 25px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    padding: 12px 15px;

    background:
        rgba(10, 16, 11, .72);

    backdrop-filter: blur(7px);

    border-right:
        3px solid var(--olive-light);
}


.hero-media-label strong {
    color: #c4ce91;

    font-size: 29px;
    line-height: 1;
}


.hero-media-label span {
    margin-top: 4px;

    color: #d3d8d0;

    font-size: 10px;

    text-transform: uppercase;
}


.quick-search {
    position: relative;
    z-index: 4;

    background: var(--paper);

    border-bottom: 1px solid var(--border);
}


.quick-search-inner {
    min-height: 86px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        150px;

    align-items: center;

    gap: 10px;
}


.search-field {
    min-height: 48px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0 17px;

    background: white;

    border:
        1px solid #d7d9d4;

    border-radius: 5px;
}


.search-field span {
    color: #536052;

    font-size: 25px;
}


.search-field input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;
}


.search-button {
    min-height: 48px;

    border: 0;
    border-radius: 5px;

    color: white;
    background: var(--green);

    font-weight: 800;
}


.search-result-text {
    grid-column: 1 / -1;

    margin: -2px 0 12px;

    color: var(--muted);

    font-size: 12px;
}


.catalog {
    padding: 70px 0 44px;
}


.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 13px;
}


.category-card {
    overflow: hidden;

    background: #fdfcf9;

    border:
        1px solid #dedfd9;

    border-radius: 7px;

    box-shadow:
        0 8px 25px rgba(16,20,16,.035);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}


.category-card:hover {
    transform: translateY(-3px);

    box-shadow: var(--shadow);
}


.category-media {
    height: 210px;

    overflow: hidden;

    background: #e9e7e0;
}


.category-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .3s ease;
}


.category-card:hover img {
    transform: scale(1.03);
}


.category-copy {
    min-height: 175px;

    padding: 20px;

    display: flex;
    flex-direction: column;
}


.category-copy h3 {
    margin: 0 0 10px;

    font-size: 18px;
    line-height: 1.15;
}


.category-copy p {
    margin: 0 0 20px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.5;
}


.category-copy span {
    margin-top: auto;

    color: var(--orange);

    font-size: 12px;
    font-weight: 850;
}


.products {
    padding: 38px 0 76px;
}


.products-heading {
    margin-bottom: 22px;
}


.reset-products {
    padding: 10px 15px;

    border:
        1px solid #cacdc6;

    border-radius: 4px;

    background: white;

    font-size: 12px;
    font-weight: 800;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 13px;
}


.product-card {
    min-width: 0;

    display: grid;
    grid-template-columns:
        minmax(150px, .86fr)
        minmax(0, 1.14fr);

    background: white;

    border:
        1px solid #dedfd9;

    border-radius: 7px;

    overflow: hidden;
}


.product-card[hidden] {
    display: none;
}


.product-media {
    min-height: 255px;

    overflow: hidden;

    background: #eceae3;
}


.product-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.product-copy {
    min-width: 0;

    padding: 18px;

    display: flex;
    flex-direction: column;
}


.product-category {
    margin-bottom: 6px;

    color: var(--olive);

    font-size: 10px;
    font-weight: 850;

    text-transform: uppercase;
}


.product-copy h3 {
    margin: 0;

    font-size: 19px;
    line-height: 1.1;
}


.product-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-top: 14px;
}


.product-tags span {
    padding: 5px 7px;

    border-radius: 3px;

    color: #495149;
    background: #eff0ec;

    font-size: 10px;
}


.product-status {
    margin: 14px 0 16px;

    color: #71786f;

    font-size: 11px;
    line-height: 1.4;
}


.product-actions {
    margin-top: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 6px;
}


.product-actions button {
    min-height: 39px;

    border-radius: 4px;

    font-size: 11px;
    font-weight: 850;
}


.product-details-button {
    border: 1px solid #cfd2cb;
    background: white;
}


.product-order-button {
    color: white;

    border: 0;
    background: var(--orange);
}


.trust-strip {
    color: white;

    background:
        linear-gradient(
            100deg,
            #142018,
            #293823
        );
}


.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.trust-grid article {
    min-height: 175px;

    padding: 34px 28px;

    border-right:
        1px solid rgba(255,255,255,.1);
}


.trust-grid article:last-child {
    border-right: 0;
}


.trust-grid span {
    display: block;

    margin-bottom: 10px;

    color: #b6c083;

    font-size: 11px;
    font-weight: 900;
}


.trust-grid strong {
    display: block;

    font-size: 18px;
}


.trust-grid p {
    margin: 7px 0 0;

    color: #aab4aa;

    font-size: 12px;
    line-height: 1.5;
}


.spotlight {
    padding: 76px 0;

    background:
        #ece9e1;
}


.spotlight-layout {
    min-height: 460px;

    display: grid;
    grid-template-columns: .78fr 1.22fr;

    overflow: hidden;

    background: #f7f5ee;

    border:
        1px solid #d7d5cd;

    box-shadow: var(--shadow);
}


.spotlight-copy {
    padding: 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.spotlight-copy h2 {
    margin: 0;

    font-family:
        "Arial Narrow",
        "Roboto Condensed",
        Arial,
        sans-serif;

    font-size: clamp(44px, 5vw, 72px);
    line-height: .9;

    text-transform: uppercase;
}


.spotlight-copy h3 {
    margin: 11px 0 0;

    color: var(--olive);

    font-size: 18px;
    font-weight: 850;

    text-transform: uppercase;
}


.spotlight-copy p {
    max-width: 500px;

    margin: 25px 0;

    color: #656c64;

    line-height: 1.65;
}


.spotlight-order {
    align-self: flex-start;
}


.spotlight-media {
    min-height: 460px;

    overflow: hidden;
}


.spotlight-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.consultation {
    padding: 80px 0;

    background: white;
}


.consultation-layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;

    gap: 80px;
}


.consultation-copy h2 {
    max-width: 570px;

    margin: 0;

    font-family:
        "Arial Narrow",
        "Roboto Condensed",
        Arial,
        sans-serif;

    font-size: clamp(40px, 4vw, 62px);
    line-height: .95;

    text-transform: uppercase;
}


.consultation-copy > p {
    max-width: 600px;

    margin: 24px 0;

    color: #6f766e;

    font-size: 15px;
    line-height: 1.65;
}


.contact-lines {
    display: flex;
    flex-direction: column;

    gap: 7px;

    color: var(--deep-green);

    font-weight: 800;
}


.consultation-form {
    padding: 27px;

    background: #eeece5;

    border:
        1px solid #dbd9d2;

    border-radius: 6px;
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;
}


.consultation-form label {
    display: block;

    margin-bottom: 10px;
}


.consultation-form label > span {
    display: block;

    margin-bottom: 6px;

    color: #515850;

    font-size: 11px;
    font-weight: 800;
}


.consultation-form input,
.consultation-form textarea {
    width: 100%;

    padding: 14px 14px;

    border:
        1px solid #cacbc6;

    border-radius: 4px;

    outline: 0;

    background: white;
}


.consultation-form input:focus,
.consultation-form textarea:focus {
    border-color: var(--olive);
}


.consultation-form .btn {
    width: 100%;
}


.form-status {
    min-height: 20px;

    margin-top: 12px;

    color: #5d655c;

    font-size: 11px;
}


/* ==================================================
   P004B — CLEAN PRODUCT ASSETS
   ================================================== */

.category-media,
.product-media {
    background:
        radial-gradient(
            circle at 50% 45%,
            #ffffff 0%,
            #f5f4ef 58%,
            #e9e7df 100%
        );
}


.category-media img {
    object-fit: contain;

    padding: 18px;

    transform: none !important;
}


.product-media {
    display: flex;
    align-items: center;
    justify-content: center;
}


.product-media img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 18px;

    transform: none !important;
}


.product-card:hover .product-media img {
    transform: scale(1.025) !important;

    transition:
        transform .22s ease;
}


.spotlight-media {
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #ffffff,
            #ebe8df
        );
}


.spotlight-media img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 35px;
}


@media (max-width: 780px) {

    .category-media img {
        padding: 10px;
    }

    .product-media img {
        padding: 12px;
    }

    .spotlight-media img {
        padding: 18px;
    }

}

/* ==========================================================
   P004G — CLEAN RESPONSIVE HMMWV HERO
   ========================================================== */

.hero-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-picture img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

@media (min-width: 781px) {
    .hero-media .hero-picture img {
        object-position: center center !important;
    }
}
