*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #1a2b3c;
    --navy-dark: #0f1c2a;
    --gold: #c8951a;
    --gold-light: #e8b045;
    --light-bg: #f5f4f0;
    --mid-gray: #6b7280;
    --border: #ddd9d0;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--navy);
    background: var(--white);
}

/* NAV */
nav {
    background: var(--navy-dark);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--gold);
}

.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-decoration: none;
}

    .nav-logo span {
        color: var(--gold);
    }

.nav-logo-light {
    color: var(--white);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

    .nav-links a {
        color: #c0cad4;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--gold-light);
        }

        .nav-links a.active {
            color: var(--gold);
        }

/* HERO */
.hero {
    background: var(--navy-dark);
    padding: 100px 2rem 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px);
    }

.hero-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 1.2rem;
    position: relative;
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(44px, 8vw, 80px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
}

    .hero h1 span {
        color: var(--gold);
    }

.hero p {
    font-size: 18px;
    font-weight: 300;
    color: #9ab0c4;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* BUTTONS */
.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 14px 32px;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.1s;
}

    .btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-1px);
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border: 1.5px solid rgba(255,255,255,0.3);
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}

    .btn-outline:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

/* STATS BAR */
.stats-bar {
    background: var(--gold);
    padding: 20px 2rem;
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 6vw, 6rem);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #4a3800;
    margin-top: 2px;
}

/* SECTIONS */
section {
    padding: 80px 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 16px;
    color: var(--mid-gray);
    line-height: 1.7;
    max-width: 580px;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
    border-radius: 4px;
    padding: 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: block;
    color: inherit;
}

    .service-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .service-card h3 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 14px;
        color: var(--mid-gray);
        line-height: 1.6;
    }

    .service-card .learn-more {
        display: inline-block;
        margin-top: 1rem;
        font-size: 13px;
        font-weight: 700;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/* ABOUT */
.about-block {
    background: var(--navy-dark);
    border-radius: 6px;
    padding: 3rem 2.5rem;
    position: relative;
}

    .about-block::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 5px;
        background: var(--gold);
        border-radius: 6px 0 0 6px;
    }

    .about-block h3 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 1rem;
    }

    .about-block p {
        font-size: 15px;
        color: #8fa8be;
        line-height: 1.8;
        margin-bottom: 1rem;
    }

.about-list {
    list-style: none;
}

    .about-list li {
        font-size: 15px;
        color: var(--navy);
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .about-list li:last-child {
            border-bottom: none;
        }

.check {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
}

/* TWO COLUMN GRID */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

@media(max-width: 700px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* PORTFOLIO GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media(max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--light-bg);
}

    .portfolio-item img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.portfolio-item-label {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

/* VIDEO GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.video-wrap {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
}

    .video-wrap video {
        width: 100%;
        display: block;
    }

/* CONTACT */
.contact-section {
    background: var(--navy-dark);
}

    .contact-section .section-title {
        color: var(--white);
    }

    .contact-section .section-sub {
        color: #7a9ab5;
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.contact-item-val {
    font-size: 16px;
    color: var(--white);
}

    .contact-item-val a {
        color: var(--white);
        text-decoration: none;
    }

        .contact-item-val a:hover {
            color: var(--gold-light);
        }

/* FORM */
.quote-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 2rem;
}

    .quote-form h3 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 1.5rem;
    }

.form-group {
    margin-bottom: 1.2rem;
}

    .form-group label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: #7a9ab5;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 4px;
        padding: 10px 14px;
        font-family: 'Lato', sans-serif;
        font-size: 15px;
        color: var(--white);
        outline: none;
        transition: border-color 0.2s;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #4a6678;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--gold);
        }

    .form-group textarea {
        height: 120px;
        resize: vertical;
    }

    .form-group select option {
        background: var(--navy-dark);
        color: var(--white);
    }

.form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    padding: 14px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

    .form-submit:hover {
        background: var(--gold-light);
    }

/* LIGHT SECTION */
.light-section {
    background: var(--light-bg);
}

/* FOOTER */
footer {
    background: #070f16;
    padding: 28px 2rem;
    text-align: center;
    border-top: 3px solid var(--gold);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

    .footer-logo span {
        color: var(--gold);
    }

footer p {
    font-size: 13px;
    color: #4a6678;
}

.footer-copy {
    margin-top: 8px;
}

/* RESPONSIVE NAV */
@media(max-width: 600px) {
    nav {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

        .nav-links a {
            font-size: 12px;
        }

    section {
        padding: 60px 1.2rem;
    }

    .hero {
        padding: 70px 1.2rem 60px;
    }
    /* GALLERY */
    /* GALLERY */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 2rem;
    }

    .gallery-item {
        overflow: hidden;
        border-radius: 4px;
        background: var(--light-bg);
        position: relative;
        padding-bottom: 75%;
        height: 0;
    }

        .gallery-item img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

    @media(max-width: 900px) {
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width: 500px) {
        .gallery-grid {
            grid-template-columns: 1fr;
        }
    }
    }
.portfolio-item-label {
    display: none;
}

}
