/* =========================================
   MILSERVE PORTAL
   HOMEPAGE — LIGHT MILITARY DESIGN
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@400;500;600&display=swap');


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f4f6f2;
    color: #182018;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.018;

    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.15) 4px
        );
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================================
   NAVIGATION
========================================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 22px 0;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.97),
            rgba(255, 255, 255, 0.88)
        );

    border-bottom: 1px solid rgba(30, 45, 30, 0.10);

    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #3d5135;
    color: #ffffff;

    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 600;

    clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
    );

    box-shadow:
        0 6px 20px rgba(45, 65, 45, 0.18);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text span {
    font-family: "Oswald", sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #172018;
}

.brand-text small {
    margin-top: 5px;
    color: #6c756b;
    font-size: 8px;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    position: relative;
    color: #344034;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: #687d55;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #3d5135;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-button {
    padding: 11px 19px;

    border: 1px solid #536a48;

    color: #3d5135 !important;

    transition: 0.3s ease;
}

.nav-button::after {
    display: none;
}

.nav-button:hover {
    background: #3d5135;
    color: #ffffff !important;

    box-shadow:
        0 8px 22px rgba(61, 81, 53, 0.18);
}

.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: #263126;

    font-size: 28px;

    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #263425;
}


/* =========================================
   HERO VIDEO
========================================= */

.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    object-position: center 30%;

    filter:
        saturate(0.95)
        contrast(1.02)
        brightness(1.08);
}


/* =========================================
   HERO OVERLAY
========================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(12, 20, 13, 0.72) 0%,
            rgba(18, 28, 18, 0.45) 38%,
            rgba(20, 30, 20, 0.18) 70%,
            rgba(20, 30, 20, 0.30) 100%
        ),
        linear-gradient(
            180deg,
            rgba(10, 17, 11, 0.18),
            rgba(10, 17, 11, 0.28)
        );
}


/* =========================================
   HERO GRID
========================================= */

.hero-grid {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    opacity: 0.10;

    background-image:
        linear-gradient(
            rgba(210, 220, 195, 0.20) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(210, 220, 195, 0.20) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 85%
        );
}


/* =========================================
   HERO SCANLINE
========================================= */

.hero-scanline {
    position: absolute;

    left: 0;
    right: 0;

    top: -20%;

    height: 1px;

    z-index: 3;

    background: rgba(220, 225, 200, 0.40);

    box-shadow:
        0 0 15px rgba(220, 225, 200, 0.25);

    animation:
        scan 7s linear infinite;

    pointer-events: none;
}

@keyframes scan {

    0% {
        top: -10%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;

    z-index: 5;

    padding-top: 80px;

    max-width: 760px;
}

.hero-content::before {
    content: "MILSERVE / PERSONNEL SERVICES";

    display: block;

    margin-bottom: 20px;

    color: #d8c875;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.hero-content::after {
    content: "";

    position: absolute;

    left: -28px;
    top: 100px;

    width: 2px;
    height: 115px;

    background:
        linear-gradient(
            to bottom,
            #d8c875,
            transparent
        );

    opacity: 0.80;
}

.hero-badge {
    display: inline-block;

    margin-bottom: 18px;

    padding: 7px 12px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    backdrop-filter: blur(6px);
}

.hero h1 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(55px, 7vw, 92px);

    font-weight: 500;

    line-height: 0.98;

    text-transform: uppercase;

    color: #ffffff;

    text-shadow:
        0 5px 25px rgba(0, 0, 0, 0.25);
}

.hero h1 span {
    color: #d8c875;
}

.hero p {
    max-width: 650px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 15px;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;

    gap: 13px;

    margin-top: 32px;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 27px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #d0bd63;

    color: #20291e;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #e1d17e;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.20);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);

    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: #d8c875;

    color: #ffffff;

    background: rgba(216, 200, 117, 0.16);
}


/* =========================================
   SCROLL INDICATOR
========================================= */

.scroll-indicator {
    position: absolute;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 6;

    color: rgba(255, 255, 255, 0.75);

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 9px;
}

.scroll-indicator span {
    width: 1px;

    height: 35px;

    background: #d8c875;

    box-shadow:
        0 0 8px rgba(216, 200, 117, 0.40);
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
    position: relative;

    padding: 110px 0;

    overflow: hidden;
}

.section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(70, 90, 60, 0.20),
            transparent
        );
}

.section-heading {
    position: relative;

    max-width: 650px;

    margin-bottom: 60px;
}

.section-label {
    display: block;

    margin-bottom: 15px;

    color: #65794f;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}

.section-heading h2,
.about-content h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(40px, 5vw, 62px);

    font-weight: 500;

    line-height: 1.05;

    text-transform: uppercase;

    color: #202920;
}

.section-heading h2 span,
.about-content h2 span {
    color: #65794f;
}

.section-heading p {
    margin-top: 18px;

    color: #697269;

    font-size: 15px;
}


/* =========================================
   COMMAND / FEATURED PHOTO SECTION
========================================= */

.command-section {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f1f4ef
        );
}

.command-heading {
    max-width: 700px;
}

.command-grid {
    display: grid;

    grid-template-columns: 1.2fr 1fr 1fr;

    gap: 20px;
}

.featured-photo {
    position: relative;

    min-height: 470px;

    overflow: hidden;

    background: #263425;

    border: 1px solid rgba(45, 65, 45, 0.12);

    box-shadow:
        0 20px 50px rgba(30, 45, 30, 0.10);
}

.featured-photo img {
    width: 100%;
    height: 100%;

    min-height: 470px;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.featured-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 30%,
            rgba(10, 17, 11, 0.75)
        );

    z-index: 1;
}

.featured-photo:hover img {
    transform: scale(1.06);

    filter: saturate(1.08);
}

.photo-overlay {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 2;

    color: #ffffff;
}

.photo-overlay span {
    display: block;

    margin-bottom: 8px;

    color: #d8c875;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.photo-overlay h3 {
    font-family: "Oswald", sans-serif;

    font-size: 30px;

    font-weight: 500;

    text-transform: uppercase;

    line-height: 1.05;
}


/* =========================================
   PHOTO SHOWCASE
========================================= */

.photo-showcase {
    padding: 110px 0;

    background: #e9ede7;
}

.showcase-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
}

.showcase-header h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(40px, 5vw, 62px);

    font-weight: 500;

    line-height: 1.05;

    text-transform: uppercase;

    color: #202920;
}

.showcase-header h2 span {
    color: #65794f;
}

.showcase-header p {
    max-width: 420px;

    color: #697269;

    font-size: 14px;

    line-height: 1.8;
}

.gallery-grid {
    display: grid;

    grid-template-columns: 1.35fr 1fr 1fr;

    grid-auto-rows: 260px;

    gap: 18px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    background: #263425;

    border: 1px solid rgba(45, 65, 45, 0.12);
}

.gallery-large {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(10, 17, 11, 0.72)
        );
}

.gallery-item:hover img {
    transform: scale(1.07);

    filter: saturate(1.10);
}

.gallery-caption {
    position: absolute;

    left: 20px;
    bottom: 18px;

    z-index: 2;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================
   SERVICES
========================================= */

.services {
    background:
        linear-gradient(
            180deg,
            #f7f8f5,
            #eef1eb
        );
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.service-card {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(50, 70, 50, 0.12);

    box-shadow:
        0 15px 40px rgba(35, 50, 35, 0.07);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 35%;
    height: 3px;

    background: #667b52;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.4s ease;

    z-index: 3;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(86, 108, 71, 0.35);

    box-shadow:
        0 25px 55px rgba(35, 50, 35, 0.13);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-image {
    position: relative;

    height: 250px;

    background-size: cover;

    background-position: center;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}

.service-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(15, 24, 16, 0.55)
        );
}

.service-card:hover .service-image {
    transform: scale(1.05);

    filter: saturate(1.08);
}


/* =========================================
   SERVICE PHOTOS
========================================= */

.leave-image {
    background-image:
        url("../img/hero.jpg");

    background-position: center top;
}

.retirement-image {
    background-image:
        url("../img/retirement.jpg");

    background-position: center top;
}

.transport-image {
    background-image:
        url("../img/transportation.jpg");

    background-position: center center;
}


.service-content {
    position: relative;

    padding: 30px;
}

.service-icon {
    color: #687d54;

    font-family: "Oswald", sans-serif;

    font-size: 13px;

    letter-spacing: 2px;
}

.service-content h3 {
    margin: 12px 0;

    font-family: "Oswald", sans-serif;

    font-size: 28px;

    font-weight: 500;

    text-transform: uppercase;

    color: #263026;
}

.service-content p {
    min-height: 75px;

    color: #697269;

    font-size: 14px;
}

.service-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 25px;

    padding-top: 20px;

    border-top:
        1px solid rgba(40, 60, 40, 0.10);

    color: #5f744d;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.service-link span {
    font-size: 20px;

    transition:
        transform 0.3s ease;
}

.service-link:hover span {
    transform: translateX(5px);
}


/* =========================================
   ABOUT
========================================= */

.about {
    background: #ffffff;
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-image {
    min-height: 600px;

    position: relative;

    overflow: hidden;

    background-image:
        url("../img/military-bg.jpg");

    background-size: cover;

    background-position: center;

    border: 1px solid rgba(55, 75, 55, 0.15);

    box-shadow:
        0 25px 65px rgba(30, 45, 30, 0.12);
}

.about-image::before {
    content: "";

    position: absolute;

    inset: 15px;

    border:
        1px solid rgba(255, 255, 255, 0.55);

    z-index: 2;

    pointer-events: none;
}

.about-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(20, 30, 20, 0.05),
            rgba(20, 30, 20, 0.55)
        );
}

.about-stamp {
    position: absolute;

    bottom: 30px;
    left: 30px;

    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 255, 255, 0.65);

    color: #ffffff;

    font-family: "Oswald", sans-serif;

    font-size: 24px;

    z-index: 3;
}

.about-content > p {
    margin: 30px 0;

    color: #687168;

    font-size: 15px;

    line-height: 1.9;
}

.about-features {
    display: flex;

    flex-direction: column;
}

.about-features div {
    display: flex;

    align-items: center;

    gap: 25px;

    padding: 18px 0;

    border-top:
        1px solid rgba(40, 60, 40, 0.10);
}

.about-features strong {
    color: #687d54;

    font-family: "Oswald", sans-serif;
}

.about-features span {
    color: #344034;

    font-size: 13px;
}


/* =========================================
   TRACKING
========================================= */

.tracking {
    background:
        linear-gradient(
            180deg,
            #eef1eb,
            #e5e9e2
        );
}

.tracking-box {
    position: relative;

    padding: 70px;

    overflow: hidden;

    border:
        1px solid rgba(70, 90, 60, 0.18);

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f3f5f1
        );

    box-shadow:
        0 25px 65px rgba(35, 50, 35, 0.08);
}

.tracking-box::before,
.tracking-box::after {
    content: "";

    position: absolute;

    width: 70px;
    height: 70px;

    border-color: rgba(91, 111, 72, 0.35);

    pointer-events: none;
}

.tracking-box::before {
    top: 15px;
    left: 15px;

    border-top: 1px solid;
    border-left: 1px solid;
}

.tracking-box::after {
    right: 15px;
    bottom: 15px;

    border-right: 1px solid;
    border-bottom: 1px solid;
}

.tracking-content {
    max-width: 600px;
}

.tracking-content h2 {
    font-family: "Oswald", sans-serif;

    font-size: 52px;

    font-weight: 500;

    text-transform: uppercase;

    color: #263026;
}

.tracking-content p {
    margin-top: 12px;

    color: #687168;
}

.tracking-form {
    display: flex;

    gap: 12px;

    margin-top: 35px;
}

.input-wrapper {
    flex: 1;
}

.input-wrapper input {
    width: 100%;

    height: 52px;

    padding: 0 18px;

    border:
        1px solid rgba(45, 65, 45, 0.16);

    outline: none;

    background: #ffffff;

    color: #253025;

    font-size: 13px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.input-wrapper input:focus {
    border-color: #65794f;

    box-shadow:
        0 0 20px rgba(100, 120, 80, 0.10);
}

.input-wrapper input::placeholder {
    color: #9aa19a;
}

.tracking-result {
    margin-top: 20px;

    color: #65794f;

    font-size: 13px;
}


/* =========================================
   NOTICE
========================================= */

.notice {
    position: relative;

    padding: 30px 0;

    background:
        linear-gradient(
            90deg,
            #dfe5da,
            #e8ece5,
            #dfe5da
        );

    border-top:
        1px solid rgba(50, 70, 50, 0.10);

    border-bottom:
        1px solid rgba(50, 70, 50, 0.10);
}

.notice-content {
    display: flex;

    gap: 25px;

    align-items: center;
}

.notice-content strong {
    white-space: nowrap;

    color: #526645;

    font-size: 10px;

    letter-spacing: 2px;
}

.notice-content p {
    color: #697269;

    font-size: 11px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #20291f,
            #151c15
        );

    padding-top: 80px;

    color: #ffffff;
}

footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(210, 190, 100, 0.45),
            transparent
        );
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 70px;
}

.footer-brand p {
    max-width: 280px;

    margin-top: 20px;

    color: #a0aaa0;

    font-size: 13px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 10px;

    color: #d2c37c;

    font-family: "Oswald", sans-serif;

    font-size: 16px;

    font-weight: 500;

    text-transform: uppercase;
}

.footer-column a {
    color: #a0aaa0;

    font-size: 12px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column a:hover {
    color: #d8c875;

    transform: translateX(3px);
}

.footer-bottom {
    padding: 22px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-bottom p,
.footer-bottom span {
    color: #788078;

    font-size: 10px;
}


/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 1100px) {

    .command-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-photo:first-child {
        grid-column: 1 / -1;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-large {
        grid-row: span 2;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .nav-links {
        gap: 20px;
    }

    .about-grid {
        gap: 50px;
    }
}


/* =========================================
   RESPONSIVE — 900px
========================================= */

@media (max-width: 900px) {

    .navbar {
        background:
            rgba(255, 255, 255, 0.96);

        backdrop-filter: blur(10px);
    }

    .nav-links {
        position: absolute;

        top: 88px;

        left: 5%;
        right: 5%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 25px;

        background: #ffffff;

        border:
            1px solid rgba(40, 60, 40, 0.12);

        box-shadow:
            0 25px 60px rgba(30, 45, 30, 0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 10px 0;
    }

    .nav-links a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image {
        min-height: 450px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .showcase-header {
        align-items: flex-start;

        flex-direction: column;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .container {
        width: min(92%, 1180px);
    }

    .navbar {
        padding: 18px 0;
    }

    .brand-symbol {
        width: 40px;
        height: 40px;

        font-size: 16px;
    }

    .brand-text span {
        font-size: 18px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-video {
        object-position: center 55%;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(12, 20, 13, 0.70),
                rgba(18, 28, 18, 0.35)
            ),
            linear-gradient(
                180deg,
                rgba(10, 17, 11, 0.15),
                rgba(10, 17, 11, 0.35)
            );
    }

    .hero-content {
        padding-top: 70px;

        max-width: 100%;
    }

    .hero-content::before {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .hero-content::after {
        left: -12px;

        top: 95px;

        height: 85px;
    }

    .hero-badge {
        font-size: 8px;

        padding: 6px 9px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-grid {
        background-size: 55px 55px;

        opacity: 0.07;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .about-content h2 {
        font-size: 42px;
    }

    /* Command photos */

    .command-grid {
        grid-template-columns: 1fr;
    }

    .featured-photo:first-child {
        grid-column: auto;
    }

    .featured-photo,
    .featured-photo img {
        min-height: 360px;
    }

    .photo-overlay h3 {
        font-size: 25px;
    }

    /* Gallery */

    .photo-showcase {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 250px;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: auto;

        grid-row: auto;
    }

    .gallery-large {
        height: 350px;
    }

    /* Services */

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 25px;
    }

    .service-content h3 {
        font-size: 25px;
    }

    /* About */

    .about-image {
        min-height: 400px;
    }

    /* Tracking */

    .tracking-box {
        padding: 45px 25px;
    }

    .tracking-content h2 {
        font-size: 38px;
    }

    .tracking-form {
        flex-direction: column;
    }

    .tracking-form .btn {
        width: 100%;
    }

    /* Notice */

    .notice-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom .container {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 46px;
    }

    .hero-content::before {
        letter-spacing: 1.5px;
    }

    .section-heading h2,
    .about-content h2 {
        font-size: 36px;
    }

    .tracking-content h2 {
        font-size: 34px;
    }

    .brand-text small {
        font-size: 7px;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .hero-scanline {
        animation: none;
    }

    .service-card,
    .service-image,
    .featured-photo img,
    .gallery-item img,
    .btn,
    .nav-links a,
    .service-link span {
        transition: none;
    }
}