/* =========================================================
   ENZONE GLOBAL
   PREMIUM RESPONSIVE WEBSITE
========================================================= */

:root {

    --navy: #061624;
    --navy-2: #0a2032;
    --navy-3: #102d42;

    --gold: #d5b05d;
    --gold-light: #e5ca83;

    --white: #ffffff;
    --off-white: #f5f7f9;
    --soft-white: #fafbfc;

    --text: #152534;
    --muted: #687583;

    --border: #e2e7eb;

    --shadow-sm:
        0 8px 30px rgba(6, 22, 36, 0.07);

    --shadow-md:
        0 20px 60px rgba(6, 22, 36, 0.12);

    --shadow-lg:
        0 30px 100px rgba(6, 22, 36, 0.22);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --container: 1240px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

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

    line-height: 1.6;

    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}


/* =========================================================
   GLOBAL
========================================================= */

.section {
    padding: 120px 0;
}

.section-container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 65px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

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

    letter-spacing: 0.16em;

    color: var(--gold);

    margin-bottom: 18px;
}

.section-heading h2,
.faq-intro h2 {
    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.06;

    letter-spacing: -0.045em;

    color: var(--navy);

    margin-bottom: 24px;
}

.section-heading h2 span,
.faq-intro h2 span {
    color: var(--gold);
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
}

.navbar {
    width: 100%;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid rgba(6, 22, 36, 0.08);

    box-shadow:
        0 4px 25px rgba(6, 22, 36, 0.05);
}

.nav-container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    height: 82px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.site-logo {
    width: 142px;
    height: auto;

    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-link {
    position: relative;

    color: #445260;

    font-size: 14px;
    font-weight: 650;

    transition:
        color 0.25s ease;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition:
        width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* MOBILE NAV */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.mobile-menu-button span {
    width: 22px;
    height: 2px;

    background: var(--navy);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: calc(100vh - 82px);

    overflow: hidden;

    display: flex;
    align-items: stretch;
}

.hero-image {
    position: absolute;
    inset: 0;

    background-image:
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center center;

    transform: scale(1.01);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    /*
       This is deliberately stronger on the left,
       where the text sits, while allowing the
       supplied equipment image to remain visible.
    */

    background:
        linear-gradient(
            90deg,
            rgba(5, 19, 30, 0.94) 0%,
            rgba(5, 19, 30, 0.82) 25%,
            rgba(5, 19, 30, 0.55) 43%,
            rgba(5, 19, 30, 0.18) 67%,
            rgba(5, 19, 30, 0.02) 100%
        );
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;

    min-height: calc(100vh - 82px);

    display: flex;
    align-items: center;
}

.hero-content {

    /*
       FIX FOR HERO TEXT ALIGNMENT:
       Keep a fixed readable width and
       prevent the content from stretching.
    */

    width: min(620px, 100%);

    padding: 90px 0;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;

    color: var(--gold-light);

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

    letter-spacing: 0.2em;

    margin-bottom: 22px;
}

.hero-eyebrow span {
    width: 28px;
    height: 1px;

    background: var(--gold);
}

.hero h1 {

    /*
       Fixed line-height and max-width prevent
       awkward text alignment / wrapping.
    */

    max-width: 610px;

    color: var(--white);

    font-size: clamp(44px, 5.1vw, 76px);

    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 650;

    margin-bottom: 28px;
}

.hero h1 strong {
    display: block;

    font-weight: 650;

    color: var(--gold-light);
}

.hero-description {

    max-width: 555px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;

    line-height: 1.75;

    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 42px;
}

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 0 22px;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 750;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--navy);
    background: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-secondary {
    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.35);

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

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

    gap: 24px;
}

.hero-meta div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.68);

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

.hero-meta i {
    color: var(--gold);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--off-white);
}

.about-grid {
    display: grid;

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

    gap: 20px;
}

.about-card {
    padding: 38px;

    background: var(--white);

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

    border-radius: var(--radius-md);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-icon {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: var(--navy);

    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 27px;
}

.about-icon i {
    font-size: 18px;
}

.about-card h3 {
    color: var(--navy);

    font-size: 22px;

    line-height: 1.2;

    margin-bottom: 15px;
}

.about-card p {
    color: var(--muted);

    line-height: 1.75;

    font-size: 15px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    background: var(--white);
}

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


/* PRODUCT CONTROLS */

.product-controls {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 38px;
}

.search-box {
    position: relative;

    flex: 1;

    max-width: 560px;
}

.search-box i {
    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--muted);

    font-size: 14px;
}

.search-box input {
    width: 100%;

    height: 52px;

    padding: 0 20px 0 48px;

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

    border-radius: 7px;

    outline: none;

    color: var(--text);

    background: var(--soft-white);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.search-box input:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(213, 176, 93, 0.12);
}

.category-filter select {
    height: 52px;

    min-width: 220px;

    padding: 0 42px 0 17px;

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

    border-radius: 7px;

    background: var(--soft-white);

    color: var(--text);

    outline: none;

    cursor: pointer;
}


/* PRODUCT GRID */

.products-grid {
    display: grid;

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

    gap: 22px;
}


/* PRODUCT CARD */

.product-card {
    overflow: hidden;

    background: var(--white);

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

    border-radius: var(--radius-md);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);

    border-color: rgba(213, 176, 93, 0.55);

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

.product-image {
    position: relative;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #f1f4f6;
}

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

    object-fit: cover;

    transition:
        transform 0.55s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}

.product-category {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 6px 10px;

    border-radius: 5px;

    background: rgba(6, 22, 36, 0.88);

    color: var(--white);

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

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.product-card-body {
    padding: 25px;
}

.product-card h3 {
    color: var(--navy);

    font-size: 21px;

    line-height: 1.2;

    letter-spacing: -0.025em;

    margin-bottom: 9px;
}

.product-price {
    color: var(--gold);

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

    margin-bottom: 12px;
}

.product-short-description {
    min-height: 54px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.65;

    margin-bottom: 20px;
}

.more-info-button {
    width: 100%;

    height: 46px;

    border: 1px solid var(--navy);

    border-radius: 6px;

    background: transparent;

    color: var(--navy);

    font-size: 13px;
    font-weight: 750;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.more-info-button:hover {
    background: var(--navy);
    color: var(--white);
}


/* NO PRODUCTS */

.no-products {
    text-align: center;

    padding: 70px 20px;

    color: var(--muted);
}

.no-products i {
    font-size: 40px;

    color: var(--gold);

    margin-bottom: 18px;
}

.no-products h3 {
    color: var(--navy);

    margin-bottom: 6px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--off-white);
}

.contact-cards {
    display: grid;

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

    gap: 20px;

    margin-bottom: 55px;
}

.contact-card {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 32px;

    background: var(--white);

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

    border-radius: var(--radius-md);

    min-height: 190px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

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

.contact-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: var(--navy);

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: var(--white);

    font-size: 17px;
}

.contact-card-content {
    min-width: 0;
}

.contact-label {
    display: block;

    color: var(--gold);

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

    letter-spacing: 0.14em;

    margin-bottom: 8px;
}

.contact-card-content > a {
    display: block;

    color: var(--navy);

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

    overflow-wrap: anywhere;

    margin-bottom: 7px;
}

.contact-card-content strong {
    display: block;

    color: var(--navy);

    font-size: 17px;

    margin-bottom: 2px;
}

.contact-card-content p {
    color: var(--muted);

    font-size: 13px;
}

.contact-card-content small {
    display: block;

    color: var(--muted);

    font-size: 12px;

    margin-top: 6px;
}


/* MAP */

.map-card {
    overflow: hidden;

    background: var(--white);

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

    border-radius: var(--radius-lg);

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

.map-header {
    padding: 32px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.map-header h3 {
    color: var(--navy);

    font-size: 24px;

    margin-bottom: 5px;
}

.map-header p {
    color: var(--muted);

    font-size: 14px;
}

.map-button {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 16px;

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

    border-radius: 6px;

    color: var(--navy);

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

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.map-button:hover {
    background: var(--off-white);

    border-color: var(--gold);
}

.map-wrapper {
    width: 100%;

    height: 430px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--white);
}

.faq-layout {
    display: grid;

    grid-template-columns:
        0.75fr
        1.25fr;

    gap: 100px;

    align-items: start;
}

.faq-intro {
    position: sticky;

    top: 120px;
}

.faq-intro p {
    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 28px;
}

.faq-contact-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--navy);

    font-size: 14px;
    font-weight: 750;
}

.faq-contact-link i {
    color: var(--gold);

    transition:
        transform 0.2s ease;
}

.faq-contact-link:hover i {
    transform: translateX(4px);
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;

    min-height: 82px;

    border: 0;

    background: transparent;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    text-align: left;

    cursor: pointer;

    color: var(--navy);

    font-size: 16px;
    font-weight: 700;
}

.faq-question i {
    flex-shrink: 0;

    color: var(--gold);

    font-size: 14px;

    transition:
        transform 0.25s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease;
}

.faq-answer p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    padding:
        0
        45px
        25px
        0;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.product-modal {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.product-modal.active {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;
}

.product-modal-backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(3, 13, 21, 0.82);

    backdrop-filter: blur(9px);
}

.product-modal-window {
    position: relative;

    z-index: 2;

    width: min(
        1120px,
        100%
    );

    max-height: calc(100vh - 60px);

    overflow-y: auto;

    background: var(--white);

    border-radius: 18px;

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

    transform:
        translateY(25px)
        scale(0.97);

    transition:
        transform 0.3s ease;
}

.product-modal.active .product-modal-window {
    transform:
        translateY(0)
        scale(1);
}

.modal-close {
    position: absolute;

    z-index: 10;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    color: var(--navy);

    box-shadow:
        0 8px 25px rgba(6, 22, 36, 0.12);

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.modal-close:hover {
    background: var(--gold);

    transform: rotate(5deg);
}

.modal-content {
    display: grid;

    grid-template-columns:
        0.95fr
        1.05fr;

    min-height: 620px;
}

.modal-image-column {
    padding: 35px;

    background: var(--off-white);

    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1;

    max-height: 550px;

    overflow: hidden;

    border-radius: 12px;

    background: var(--white);

    cursor: zoom-in;
}

.modal-image-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.6s cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}

.modal-image-wrapper:hover img {
    transform: scale(1.18);
}

.zoom-hint {
    position: absolute;

    bottom: 15px;
    left: 50%;

    transform: translateX(-50%);

    padding: 7px 11px;

    border-radius: 20px;

    background:
        rgba(6, 22, 36, 0.8);

    color: var(--white);

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

    white-space: nowrap;

    pointer-events: none;

    opacity: 0.85;
}

.modal-details {
    padding: 55px 55px 50px;

    display: flex;

    flex-direction: column;
}

.modal-category {
    color: var(--gold);

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

    letter-spacing: 0.14em;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.modal-details h2 {
    color: var(--navy);

    font-size: clamp(30px, 3vw, 44px);

    line-height: 1.08;

    letter-spacing: -0.04em;

    margin-bottom: 12px;

    padding-right: 30px;
}

.modal-price {
    color: var(--gold);

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

    margin-bottom: 22px;
}

.modal-description {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.modal-detail-block {
    margin-bottom: 22px;
}

.modal-detail-block h3 {
    color: var(--navy);

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    margin-bottom: 9px;
}

.modal-detail-block p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}

.modal-detail-block ul {
    list-style: none;

    display: grid;

    gap: 7px;
}

.modal-detail-block li {
    position: relative;

    padding-left: 18px;

    color: var(--muted);

    font-size: 13px;
}

.modal-detail-block li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 9px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--gold);
}

.payment-block {
    padding-top: 15px;

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

.modal-actions {
    margin-top: auto;

    padding-top: 15px;
}

.modal-actions .btn {
    width: 100%;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--navy);

    color: var(--white);

    padding-top: 75px;
}

.footer-container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        0.6fr
        1fr;

    gap: 70px;

    padding-bottom: 65px;
}

.footer-logo {
    width: 140px;

    margin-bottom: 22px;

    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 520px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;

    line-height: 1.8;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}

.footer-column h4 {
    color: var(--white);

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    margin-bottom: 7px;
}

.footer-column a,
.footer-address {
    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;

    line-height: 1.65;

    transition:
        color 0.2s ease;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-address {
    margin-top: 7px;
}

.footer-bottom {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;

    min-height: 75px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.42);

    font-size: 11px;
}

.footer-bottom strong {
    color: var(--gold-light);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .about-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .about-card-large {
        grid-column: span 2;
    }

    .faq-layout {
        gap: 55px;
    }

    .modal-content {
        grid-template-columns:
            0.85fr
            1.15fr;
    }

    .modal-details {
        padding: 45px;
    }

}


@media (max-width: 800px) {

    .section {
        padding: 85px 0;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-nav {
        display: flex;

        max-height: 0;

        overflow: hidden;

        flex-direction: column;

        background: var(--white);

        border-top: 1px solid transparent;

        transition:
            max-height 0.35s ease,
            border-color 0.35s ease;
    }

    .mobile-nav.open {
        max-height: 400px;

        border-top-color: var(--border);
    }

    .mobile-nav a {
        padding: 17px 24px;

        color: var(--navy);

        font-size: 14px;
        font-weight: 700;

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

    .nav-container {
        height: 72px;
    }

    .site-logo {
        width: 125px;
    }


    /* HERO */

    .hero {
        min-height: 760px;
    }

    .hero-content-wrapper {
        min-height: 760px;
    }

    .hero-image {
        background-position: 63% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 19, 30, 0.95) 0%,
                rgba(5, 19, 30, 0.83) 40%,
                rgba(5, 19, 30, 0.45) 75%,
                rgba(5, 19, 30, 0.18) 100%
            );
    }

    .hero-content {
        width: 100%;

        padding: 70px 0;
    }

    .hero h1 {
        font-size: clamp(
            42px,
            10vw,
            62px
        );
    }

    .hero-description {
        max-width: 520px;
    }


    /* CONTACT */

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: auto;
    }


    /* FAQ */

    .faq-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .faq-intro {
        position: static;
    }


    /* MODAL */

    .product-modal {
        padding: 15px;
    }

    .product-modal-window {
        max-height: calc(100vh - 30px);
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-image-column {
        padding: 55px 25px 25px;
    }

    .modal-image-wrapper {
        max-width: 520px;
    }

    .modal-details {
        padding: 35px 25px 30px;
    }

    .modal-details h2 {
        padding-right: 0;
    }

}


@media (max-width: 600px) {

    .section-container,
    .nav-container,
    .footer-container,
    .footer-bottom,
    .hero-content-wrapper {
        width: min(
            calc(100% - 34px),
            var(--container)
        );
    }

    .section {
        padding: 72px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2,
    .faq-intro h2 {
        font-size: 38px;
    }


    /* HERO */

    .hero {
        min-height: 720px;
    }

    .hero-content-wrapper {
        min-height: 720px;
    }

    .hero h1 {
        font-size: 43px;

        line-height: 1.01;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-meta {
        flex-direction: column;

        gap: 12px;
    }


    /* PRODUCTS */

    .product-controls {
        flex-direction: column;

        align-items: stretch;
    }

    .search-box {
        max-width: none;
    }

    .category-filter select {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-short-description {
        min-height: auto;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card-large {
        grid-column: auto;
    }


    /* MAP */

    .map-header {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px;
    }

    .map-button {
        width: 100%;

        justify-content: center;
    }

    .map-wrapper {
        height: 330px;
    }


    /* MODAL */

    .modal-image-column {
        padding: 55px 18px 18px;
    }

    .modal-details {
        padding: 30px 20px 25px;
    }

    .modal-details h2 {
        font-size: 31px;
    }

    .zoom-hint {
        font-size: 9px;
    }


    /* FOOTER */

    .footer {
        padding-top: 55px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 45px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
        justify-content: center;

        padding: 20px 0;

        gap: 7px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;
    }

}