:root {
    --bg-primary: #111417;
    --bg-secondary: #1a1f24;
    --bg-tertiary: #242b31;

    --text-primary: #f5f7f8;
    --text-secondary: #b8c0c7;

    --accent: #d94f32;
    --accent-hover: #bb3f27;

    --border: #343c43;

    --container-width: 1200px;

    --radius: 10px;

    --shadow:
        0 12px 30px rgba(0, 0, 0, 0.22);
}

[data-theme="light"] {
    --bg-primary: #f7f8f9;
    --bg-secondary: #ffffff;
    --bg-tertiary: #edf0f2;

    --text-primary: #171b1e;
    --text-secondary: #56616a;

    --border: #d5dadd;

    --shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background-color: var(--bg-primary);
    color: var(--text-primary);

    line-height: 1.6;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(
        calc(100% - 2rem),
        var(--container-width)
    );

    margin-inline: auto;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section-header {
    max-width: 700px;
    margin-bottom: 2rem;
}

.section-eyebrow {
    margin: 0 0 0.5rem;

    color: var(--accent);

    font-size: 0.85rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-title {
    margin: 0;

    font-size: clamp(
        2rem,
        5vw,
        3rem
    );

    line-height: 1.1;
}

.section-description {
    color: var(--text-secondary);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background-color:
        rgba(17, 20, 23, 0.95);

    border-bottom:
        1px solid var(--border);

    backdrop-filter: blur(10px);
}

[data-theme="light"] .site-header {
    background-color:
        rgba(255, 255, 255, 0.95);
}

.header-inner {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background-color: var(--accent);
    color: #ffffff;

    font-size: 1.35rem;
    font-weight: 800;

    border-radius: 6px;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.05;
}

.brand-text strong {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.brand-text small {
    margin-top: 0.25rem;

    color: var(--text-secondary);

    font-size: 0.7rem;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle,
.menu-toggle {
    width: 42px;
    height: 42px;

    border:
        1px solid var(--border);

    background-color:
        var(--bg-secondary);

    color:
        var(--text-primary);

    border-radius: 6px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;

    background-color:
        var(--text-primary);
}

.main-nav {
    position: absolute;

    top: 74px;
    left: 1rem;
    right: 1rem;

    display: none;
    flex-direction: column;

    padding: 1rem;

    background-color:
        var(--bg-secondary);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);
}

.main-nav.is-open {
    display: flex;
}

.main-nav a {
    padding: 0.9rem 0.75rem;

    font-weight: 600;

    color:
        var(--text-secondary);

    border-radius: 5px;
}

.main-nav a:hover {
    color:
        var(--text-primary);

    background-color:
        var(--bg-tertiary);
}

.main-nav .nav-quote {
    margin-top: 0.5rem;

    background-color:
        var(--accent);

    color: #ffffff;

    text-align: center;
}

.main-nav .nav-quote:hover {
    background-color:
        var(--accent-hover);

    color: #ffffff;
}

@media (min-width: 900px) {

    .header-inner {
        gap: 2rem;
    }

    .menu-toggle {
        display: none;
    }

    .header-actions {
        order: 3;
    }

    .main-nav {
        position: static;

        display: flex;

        flex-direction: row;
        align-items: center;

        margin-left: auto;

        padding: 0;

        border: 0;

        background: transparent;

        box-shadow: none;
    }

    .main-nav a {
        padding:
            0.65rem
            0.85rem;
    }

    .main-nav .nav-quote {
        margin:
            0
            0
            0
            0.75rem;

        padding:
            0.75rem
            1.1rem;
    }
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;

    margin-top: 1.75rem;
}

.btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        0.8rem
        1.3rem;

    border-radius:
        6px;

    font-weight:
        700;

    transition:
        0.2s ease;
}

.btn-primary {
    background-color:
        var(--accent);

    color:
        #ffffff;
}

.btn-primary:hover {
    background-color:
        var(--accent-hover);
}

.btn-secondary {
    border:
        1px solid var(--border);

    background-color:
        var(--bg-secondary);
}

.btn-secondary:hover {
    background-color:
        var(--bg-tertiary);
}

@media (min-width: 520px) {

    .button-group {
        flex-direction: row;
    }

}

.hero {
    position: relative;

    min-height:
        calc(100vh - 74px);

    display: flex;
    align-items: center;

    overflow: hidden;

    isolation: isolate;
}


.hero-background {
    position: absolute;

    inset: 0;

    z-index: -3;
}


.hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
        center center;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(9, 12, 14, 0.96) 0%,
            rgba(9, 12, 14, 0.82) 45%,
            rgba(9, 12, 14, 0.42) 72%,
            rgba(9, 12, 14, 0.25) 100%
        );
}


.hero-grid {
    width: 100%;

    padding-top: 5rem;
    padding-bottom: 5rem;
}


.hero-content {
    max-width: 780px;
}


.hero-eyebrow {
    margin:
        0 0 1.2rem;

    color:
        var(--accent);

    font-size:
        0.8rem;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        0.16em;
}


.hero h1 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            3rem,
            10vw,
            6.4rem
        );

    line-height:
        0.94;

    letter-spacing:
        -0.05em;
}


.hero h1 span {
    display: block;

    color:
        rgba(
            255,
            255,
            255,
            0.67
        );
}


.hero-description {
    max-width: 660px;

    margin-top: 1.6rem;

    color:
        rgba(
            255,
            255,
            255,
            0.78
        );

    font-size:
        clamp(
            1rem,
            2vw,
            1.15rem
        );
}


.hero-secondary {
    color: #ffffff;

    border-color:
        rgba(
            255,
            255,
            255,
            0.28
        );

    background:
        rgba(
            255,
            255,
            255,
            0.06
        );

    backdrop-filter:
        blur(6px);
}


.hero-secondary:hover {
    background:
        rgba(
            255,
            255,
            255,
            0.14
        );
}


.hero-features {
    display: grid;

    grid-template-columns:
        1fr;

    gap:
        1px;

    max-width:
        620px;

    margin-top:
        3rem;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.15
        );

    background:
        rgba(
            255,
            255,
            255,
            0.15
        );
}


.hero-features div {
    padding:
        1rem 1.2rem;

    background:
        rgba(
            8,
            11,
            13,
            0.72
        );

    backdrop-filter:
        blur(10px);
}


.hero-features strong {
    display: block;

    color: #ffffff;

    font-size:
        0.9rem;

    text-transform:
        uppercase;

    letter-spacing:
        0.05em;
}


.hero-features span {
    color:
        rgba(
            255,
            255,
            255,
            0.6
        );

    font-size:
        0.82rem;
}


@media (min-width: 600px) {

    .hero-features {
        grid-template-columns:
            repeat(3, 1fr);
    }

}

.hero-panel {
    padding:
        1.75rem;

    border:
        1px solid var(--border);

    border-left:
        4px solid var(--accent);

    background-color:
        var(--bg-secondary);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);
}

.hero-panel p {
    margin:
        0 0 0.5rem;

    color:
        var(--text-secondary);

    text-transform:
        uppercase;

    letter-spacing:
        0.12em;

    font-size:
        0.75rem;
}

.hero-panel strong {
    font-size:
        1.3rem;
}

.service-grid {
    display: grid;

    grid-template-columns:
        1fr;

    gap:
        1rem;
}

.service-card {
    position:
        relative;

    padding:
        1.5rem;

    min-height:
        220px;

    background-color:
        var(--bg-primary);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.service-card:hover {
    transform:
        translateY(-4px);

    border-color:
        var(--accent);
}

.service-number {
    display:
        block;

    margin-bottom:
        1.5rem;

    color:
        var(--accent);

    font-size:
        0.8rem;

    font-weight:
        800;
}

.service-card h3 {
    margin:
        0 0 0.75rem;

    font-size:
        1.2rem;
}

.service-card p {
    margin:
        0;

    color:
        var(--text-secondary);
}

@media (min-width: 650px) {

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media (min-width: 1050px) {

    .service-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }

}

.service-grid-visual {
    grid-template-columns:
        1fr;
}


.service-card-image {
    padding: 0;

    overflow: hidden;
}


.service-image {
    height: 220px;

    overflow: hidden;

    background:
        var(--bg-tertiary);
}


.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}


.service-card-image:hover
.service-image img {
    transform:
        scale(1.045);
}


.service-card-content {
    padding:
        1.5rem;
}


.service-card-content
.service-number {
    margin-bottom:
        0.8rem;
}


.services-footer {
    margin-top:
        2rem;
}


.text-link {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        0.6rem;

    color:
        var(--text-primary);

    font-weight:
        700;
}


.text-link span {
    color:
        var(--accent);

    transition:
        transform
        0.2s ease;
}


.text-link:hover span {
    transform:
        translateX(5px);
}


@media (min-width: 700px) {

    .service-grid-visual {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (min-width: 1100px) {

    .service-grid-visual {
        grid-template-columns:
            repeat(4, 1fr);
    }

}

.callout {
    display:
        flex;

    flex-direction:
        column;

    gap:
        1.5rem;

    align-items:
        flex-start;

    padding:
        2rem;

    background-color:
        var(--bg-secondary);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);
}

.callout h2 {
    margin:
        0;

    font-size:
        clamp(
            1.8rem,
            4vw,
            2.7rem
        );
}

.callout p {
    color:
        var(--text-secondary);
}

@media (min-width: 800px) {

    .callout {
        flex-direction:
            row;

        align-items:
            center;

        justify-content:
            space-between;
    }

}

.site-footer {
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}


.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;

    padding-top: 1.75rem;
    padding-bottom: 1.25rem;
}


.footer-brand h2,
.site-footer h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}


.footer-brand h2 {
    margin-bottom: 0.75rem;
}


.footer-brand p {
    margin: 0;

    max-width: 520px;

    color: var(--text-secondary);

    line-height: 1.6;
}

.site-footer p {
    margin-top: 0;
    margin-bottom: 0.75rem;
}


.site-footer ul {
    margin: 0;
    padding-left: 1.1rem;
}


.site-footer li {
    margin-bottom: 0.35;
}


.site-footer a {
    color: var(--text-primary);
}


.site-footer a:hover {
    color: var(--accent);
}

.footer-contact .btn {
    margin-top: 0.5rem;
}

.footer-contact p {
    margin-top: 0;
    margin-bottom: 1rem;
}


.footer-bottom {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;

    /* border-top: 1px solid var(--border); */
}


.footer-bottom p {
    margin: 0;

    color: var(--text-secondary);

    font-size: 0.85rem;
}

.footer-description {
    max-width:
        420px;

    color:
        var(--text-secondary);
}

/* .site-footer h3 {
    margin-top:
        0;
} */

.footer-links {
    list-style:
        none;

    margin:
        0;

    padding:
        0;
}

.footer-links li {
    margin-bottom:
        0.7rem;
}

.footer-links a {
    color:
        var(--text-secondary);
}

.footer-links a:hover {
    color:
        var(--accent);
}

.footer-bottom {
    /* padding:
        1.25rem 0; */

    border-top:
        1px solid var(--border);

    color:
        var(--text-secondary);

    font-size:
        0.9rem;
}

/* .footer-bottom p {
    margin:
        0;
} */

@media (min-width: 800px) {

    .footer-grid {
        grid-template-columns:
            2fr 1fr 1fr;
    }

}

.project-showcase {
    display: grid;

    grid-template-columns:
        1fr;

    gap:
        1rem;
}


.project-item {
    position: relative;

    display: block;

    min-height:
        300px;

    overflow: hidden;

    border-radius:
        var(--radius);

    background:
        var(--bg-secondary);
}


.project-item img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.project-item:hover img {
    transform:
        scale(1.045);
}


.project-overlay {
    position: absolute;

    inset:
        auto 0 0 0;

    z-index: 2;

    padding:
        3.5rem
        1.5rem
        1.5rem;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.88)
        );
}


.project-overlay strong {
    display: block;

    color: #ffffff;

    font-size:
        1.15rem;
}


.project-overlay small {
    color:
        rgba(
            255,
            255,
            255,
            0.67
        );
}


.gallery-action {
    margin-top:
        2rem;
}


@media (min-width: 800px) {

    .project-showcase {
        grid-template-columns:
            1.4fr 1fr;

        grid-template-rows:
            repeat(2, 250px);
    }


    .project-large {
        grid-row:
            1 / 3;
    }


    .project-item {
        min-height:
            auto;
    }

}

.page-hero {
    padding:
        6rem 0
        4rem;

    background:
        var(--bg-secondary);

    border-bottom:
        1px solid var(--border);
}


.page-hero h1 {
    max-width:
        850px;

    margin:
        0;

    font-size:
        clamp(
            2.7rem,
            8vw,
            5rem
        );

    line-height:
        0.98;

    letter-spacing:
        -0.045em;
}


.page-hero p:not(.section-eyebrow) {
    max-width:
        650px;

    margin-top:
        1.4rem;

    color:
        var(--text-secondary);
}

.gallery-page-hero {
    background:
        linear-gradient(
             rgba(11, 14, 16, 0.82),
            rgba(11, 14, 16, 0.92)
        ),
        url("../images/gallery/welding-05-gallery.png")
        center / cover no-repeat;
}


.gallery-grid {
    display: grid;

    grid-template-columns:
        1fr;

    gap:
        1.2rem;
}


.gallery-card {
    overflow: hidden;

    background:
        var(--bg-secondary);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);
}


.gallery-image {
    aspect-ratio:
        4 / 3;

    overflow: hidden;
}


.gallery-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.gallery-card:hover
.gallery-image img {
    transform:
        scale(1.045);
}


.gallery-info {
    padding:
        1.2rem;
}


.gallery-info small {
    color:
        var(--accent);

    font-size:
        0.75rem;

    font-weight:
        700;

    text-transform:
        uppercase;

    letter-spacing:
        0.08em;
}


.gallery-info h2 {
    margin:
        0.35rem 0 0;

    font-size:
        1.15rem;
}


@media (min-width: 650px) {

    .gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (min-width: 1050px) {

    .gallery-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}

/* .services-page-hero {
    background:
        linear-gradient(
            135deg,
            var(--bg-secondary),
            var(--bg-primary)
        ),
        url("../images/services/service-hero.png")
        center / cover no-repeat;
} */
.services-page-hero {
    background:
        linear-gradient(
             rgba(11, 14, 16, 0.82),
            rgba(11, 14, 16, 0.92)
        ),
        url("../images/services/service-hero.png")
        center / cover no-repeat;
}


.services-page-hero .button-group {
    margin-top: 2rem;
}


.services-overview {
    border-bottom:
        1px solid var(--border);
}


.service-jump-grid {
    display: grid;

    grid-template-columns:
        1fr;

    gap:
        0.75rem;
}


.service-jump-card {
    display: grid;

    grid-template-columns:
        44px 1fr auto;

    align-items: center;

    gap:
        0.9rem;

    padding:
        1rem;

    background:
        var(--bg-secondary);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}


.service-jump-card:hover {
    border-color:
        var(--accent);

    transform:
        translateY(-2px);
}


.service-jump-card > span {
    color:
        var(--accent);

    font-size:
        0.78rem;

    font-weight:
        800;
}


.service-jump-card strong {
    font-size:
        0.95rem;
}


.service-jump-card small {
    color:
        var(--text-secondary);

    font-size:
        0.75rem;
}


@media (min-width: 700px) {

    .service-jump-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (min-width: 1100px) {

    .service-jump-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }

}

.service-detail {
    padding:
        4rem 0;

    border-bottom:
        1px solid var(--border);
}


.service-detail:nth-child(even) {
    background:
        var(--bg-secondary);
}


.service-detail-grid {
    display: grid;

    grid-template-columns:
        1fr;

    gap:
        2rem;

    align-items:
        center;
}


.service-detail-image {
    position: relative;

    min-height:
        320px;

    overflow:
        hidden;

    border-radius:
        var(--radius);

    background:
        var(--bg-tertiary);
}


.service-detail-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit:
        cover;
}


.service-image-number {
    position: absolute;

    left:
        1rem;

    bottom:
        1rem;

    display:
        grid;

    place-items:
        center;

    width:
        52px;

    height:
        52px;

    background:
        var(--accent);

    color:
        #ffffff;

    border-radius:
        6px;

    font-size:
        0.85rem;

    font-weight:
        800;

    box-shadow:
        var(--shadow);
}


.service-detail-content {
    max-width:
        650px;
}


.service-detail-content h2 {
    margin:
        0;

    font-size:
        clamp(
            2rem,
            5vw,
            3.6rem
        );

    line-height:
        1;

    letter-spacing:
        -0.035em;
}


.service-summary {
    margin-top:
        1.25rem;

    color:
        var(--text-secondary);

    font-size:
        1.05rem;
}


.service-detail-content h3 {
    margin:
        2rem 0
        1rem;

    font-size:
        1rem;

    text-transform:
        uppercase;

    letter-spacing:
        0.08em;
}


.capability-list {
    list-style:
        none;

    margin:
        0;

    padding:
        0;

    display:
        grid;

    gap:
        0.75rem;
}


.capability-list li {
    position:
        relative;

    padding-left:
        1.5rem;

    color:
        var(--text-secondary);
}


.capability-list li::before {
    content:
        '';

    position:
        absolute;

    left:
        0;

    top:
        0.65em;

    width:
        7px;

    height:
        7px;

    background:
        var(--accent);

    transform:
        rotate(45deg);
}


.service-actions {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    gap:
        1rem;

    margin-top:
        2rem;
}


@media (min-width: 900px) {

    .service-detail {
        padding:
            6rem 0;
    }


    .service-detail-grid {
        grid-template-columns:
            minmax(0, 1.05fr)
            minmax(0, 0.95fr);

        gap:
            5rem;
    }


    .service-detail-image {
        min-height:
            500px;
    }


    .service-detail-reverse
    .service-detail-image {
        order:
            2;
    }


    .service-detail-reverse
    .service-detail-content {
        order:
            1;
    }


    .service-actions {
        flex-direction:
            row;

        align-items:
            center;
    }

}

.services-cta {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    gap:
        2rem;

    padding:
        2rem;

    background:
        var(--bg-secondary);

    border:
        1px solid var(--border);

    border-left:
        4px solid var(--accent);

    border-radius:
        var(--radius);
}


.services-cta > div {
    max-width:
        700px;
}


.services-cta h2 {
    margin:
        0;

    font-size:
        clamp(
            2rem,
            5vw,
            3rem
        );
}


.services-cta p:not(
    .section-eyebrow
) {
    color:
        var(--text-secondary);
}


@media (min-width: 850px) {

    .services-cta {
        flex-direction:
            row;

        justify-content:
            space-between;

        align-items:
            center;

        padding:
            3rem;
    }

}

.service-detail {
    scroll-margin-top:
        90px;
}

.service-detail-image::after {
    content:
        '';

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 0, 0, 0.28)
        );

    pointer-events:
        none;
}

.quote-page-hero  {
    background:
        linear-gradient(
            rgba(11, 14, 16, 0.82),
            rgba(11, 14, 16, 0.92)
        ),
        url("../images/quote/quote-hero.jpg")
        center / cover no-repeat;
}


.quote-layout {
    display: grid;

    grid-template-columns:
        1fr;

    gap:
        2rem;
}


.quote-main {
    min-width: 0;
}


.quote-form {
    display: grid;

    gap:
        2rem;
}


.quote-form fieldset {
    margin: 0;

    padding:
        1.5rem;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        var(--bg-secondary);
}


.quote-form legend {
    padding:
        0 0.75rem;

    color:
        var(--text-primary);

    font-size:
        1.1rem;

    font-weight:
        800;
}


.form-grid {
    display: grid;

    grid-template-columns:
        1fr;

    gap:
        1.25rem;
}


.form-group {
    display: flex;

    flex-direction:
        column;

    gap:
        0.45rem;
}


.form-group label {
    font-weight:
        700;

    font-size:
        0.9rem;
}


.form-group label span {
    color:
        var(--accent);
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding:
        0.85rem
        0.95rem;

    border:
        1px solid var(--border);

    border-radius:
        6px;

    outline:
        none;

    background:
        var(--bg-primary);

    color:
        var(--text-primary);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group textarea {
    resize:
        vertical;

    min-height:
        160px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color:
        var(--accent);

    box-shadow:
        0 0 0 3px
        rgba(217, 79, 50, 0.13);
}


.field-error {
    color:
        #ff8d79;

    font-size:
        0.8rem;
}


.form-submit {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    gap:
        0.75rem;
}


.form-submit p {
    margin: 0;

    color:
        var(--text-secondary);

    font-size:
        0.8rem;
}


.alert {
    margin-bottom:
        1.5rem;

    padding:
        1rem
        1.2rem;

    border:
        1px solid;

    border-radius:
        var(--radius);
}


.alert strong {
    display:
        block;

    margin-bottom:
        0.35rem;
}


.alert p {
    margin: 0;
}


.alert-success {
    border-color:
        rgba(70, 180, 110, 0.5);

    background:
        rgba(70, 180, 110, 0.08);
}


.alert-error {
    border-color:
        rgba(220, 80, 70, 0.5);

    background:
        rgba(220, 80, 70, 0.08);
}


.quote-sidebar {
    display: grid;

    align-content:
        start;

    gap:
        1rem;
}


.quote-sidebar-card {
    padding:
        1.5rem;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        var(--bg-secondary);
}


.quote-sidebar-card h2,
.quote-sidebar-card h3 {
    margin-top:
        0;
}


.quote-sidebar-card p {
    color:
        var(--text-secondary);
}


.quote-email {
    display:
        inline-block;

    margin-top:
        0.5rem;

    color:
        var(--accent);

    font-weight:
        700;

    overflow-wrap:
        anywhere;
}


.quote-service-list {
    list-style:
        none;

    margin:
        0;

    padding:
        0;
}


.quote-service-list li {
    padding:
        0.7rem 0;

    color:
        var(--text-secondary);

    border-bottom:
        1px solid var(--border);
}


.quote-service-list li:last-child {
    border-bottom:
        0;
}


@media (min-width: 700px) {

    .form-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .form-group-full {
        grid-column:
            1 / -1;
    }

}


@media (min-width: 1000px) {

    .quote-layout {
        grid-template-columns:
            minmax(0, 1fr)
            320px;

        gap:
            3rem;
    }


    .quote-sidebar {
        position:
            sticky;

        top:
            100px;
    }

}

.website-field {
    position: absolute !important;

    left: -9999px !important;

    width: 1px;
    height: 1px;

    overflow: hidden;
}

.about-page-hero {
    background:
        linear-gradient(
            rgba(11, 14, 16, 0.82),
            rgba(11, 14, 16, 0.92)
        ),
        url("../images/about/about-hero.jpg")
        center / cover no-repeat;
}


.about-intro-grid,
.about-feature-grid,
.about-capabilities {
    display: grid;

    grid-template-columns:
        1fr;

    gap:
        2rem;

    align-items:
        center;
}


.about-intro-content h2,
.about-feature-content h2,
.about-capabilities h2 {
    margin-top:
        0.35rem;
}


.about-intro-content p,
.about-feature-content p,
.about-capabilities p {
    color:
        var(--text-secondary);

    line-height:
        1.75;
}


.about-intro-image,
.about-feature-image {
    overflow:
        hidden;

    border-radius:
        var(--radius);

    min-height:
        300px;
}


.about-intro-image img,
.about-feature-image img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    display:
        block;
}


.section-alt {
    background:
        var(--bg-secondary);
}


.values-grid {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        1rem;

    margin-top:
        2rem;
}


.value-card {
    padding:
        1.5rem;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        var(--bg-primary);
}


.value-number {
    display:
        inline-block;

    margin-bottom:
        1rem;

    color:
        var(--accent);

    font-size:
        0.85rem;

    font-weight:
        800;

    letter-spacing:
        0.1em;
}


.value-card h3 {
    margin:
        0 0 0.75rem;
}


.value-card p {
    margin:
        0;

    color:
        var(--text-secondary);

    line-height:
        1.65;
}


.capability-list {
    display:
        grid;

    grid-template-columns:
        1fr;

    border-top:
        1px solid var(--border);
}


.capability-item {
    display:
        flex;

    align-items:
        center;

    gap:
        1rem;

    padding:
        1rem 0;

    border-bottom:
        1px solid var(--border);
}


.capability-item span {
    color:
        var(--accent);

    font-size:
        1.4rem;

    font-weight:
        800;
}


.capability-item p {
    margin:
        0;

    color:
        var(--text-primary);

    font-weight:
        700;
}


.about-cta {
    display:
        flex;

    flex-direction:
        column;

    gap:
        1.5rem;

    padding:
        2rem;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        var(--bg-secondary);
}


.about-cta h2 {
    margin:
        0.35rem 0;
}


.about-cta p {
    margin:
        0;

    color:
        var(--text-secondary);
}


.about-cta-actions {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        0.75rem;
}


@media (min-width: 700px) {

    .values-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .capability-list {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .capability-item:nth-child(odd) {
        padding-right:
            1rem;
    }


    .capability-item:nth-child(even) {
        padding-left:
            1rem;
    }

}


@media (min-width: 950px) {

    .about-intro-grid,
    .about-feature-grid,
    .about-capabilities {
        grid-template-columns:
            repeat(2, 1fr);

        gap:
            4rem;
    }


    .about-feature-image {
        order:
            1;
    }


    .about-feature-content {
        order:
            2;
    }


    .values-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }


    .about-cta {
        flex-direction:
            row;

        justify-content:
            space-between;

        align-items:
            center;

        padding:
            2.5rem;
    }

}

.contact-page-hero {
    background:
        linear-gradient(
            rgba(11, 14, 16, 0.82),
            rgba(11, 14, 16, 0.92)
        ),
        url("../images/contact/contact-hero.jpg")
        center / cover no-repeat;
}


.contact-layout {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        2rem;
}


.contact-info > p {
    color:
        var(--text-secondary);

    line-height:
        1.7;
}


.contact-cards {
    display:
        grid;

    gap:
        1rem;

    margin-top:
        2rem;
}


.contact-card {
    padding:
        1.5rem;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        var(--bg-secondary);
}


.contact-card-label {
    color:
        var(--accent);

    font-size:
        0.78rem;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        0.08em;
}


.contact-card h3 {
    margin:
        0.55rem 0;
}


.contact-card p {
    color:
        var(--text-secondary);
}


.contact-card a {
    color:
        var(--accent);

    font-weight:
        700;

    overflow-wrap:
        anywhere;
}


.contact-form-wrapper {
    padding:
        1.5rem;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        var(--bg-secondary);
}


.contact-form-heading {
    margin-bottom:
        1.5rem;
}


.contact-form-heading h2 {
    margin:
        0;
}


.contact-form-heading p {
    color:
        var(--text-secondary);
}


.contact-form {
    display:
        grid;

    gap:
        1.5rem;
}


.contact-form button:disabled {
    cursor:
        not-allowed;

    opacity:
        0.5;
}


.form-coming-soon {
    margin:
        0;

    color:
        var(--text-secondary);

    font-size:
        0.85rem;
}


@media (min-width: 950px) {

    .contact-layout {
        grid-template-columns:
            0.8fr 1.2fr;

        gap:
            4rem;
    }

}

.site-nav a {
    position:
        relative;
}


.site-nav a.active {
    color:
        var(--accent);
}


.site-nav a.active::after {
    content:
        "";

    position:
        absolute;

    left:
        0;

    right:
        0;

    bottom:
        -0.35rem;

    height:
        2px;

    background:
        var(--accent);
}

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .footer-grid {
        grid-template-columns:
            1fr;

        gap:
            1.5rem;

        padding-top:
            1.5rem;

        padding-bottom:
            1.25rem;
    }


    .footer-bottom {
        padding-top:
            0.85rem;

        padding-bottom:
            0.85rem;
    }

}

@media (max-width: 900px) {

    .site-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }

}

/* ==================================================
   PROJECT GALLERY
================================================== */

.gallery-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 2rem;

    margin-bottom: 2rem;
}


.gallery-section-heading h2 {
    margin:
        0.35rem 0
        0.5rem;
}


.gallery-section-heading p:last-child {
    margin:
        0;

    color:
        var(--text-secondary);
}



/* Category grid */

.gallery-category-grid {
    display: grid;

    grid-template-columns:
        1fr;

    gap:
        1.25rem;
}



/* Individual category */

.gallery-category-card {
    min-width:
        0;

    overflow:
        hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        var(--bg-secondary);
}


.gallery-category-button {
    display:
        block;

    width:
        100%;

    padding:
        0;

    border:
        0;

    background:
        transparent;

    color:
        inherit;

    font:
        inherit;

    text-align:
        left;

    cursor:
        pointer;
}


.gallery-category-image {
    position:
        relative;

    height:
        260px;

    overflow:
        hidden;

    background:
        #111;
}


.gallery-category-image img {
    display:
        block;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform
        0.35s ease;
}


.gallery-category-overlay {
    position:
        absolute;

    inset:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(
            0,
            0,
            0,
            0.55
        );

    opacity:
        0;

    transition:
        opacity
        0.25s ease;
}


.gallery-category-overlay span {
    padding:
        0.7rem
        1rem;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.75
        );

    color:
        #ffffff;

    font-size:
        0.85rem;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        0.06em;
}


.gallery-category-button:hover
.gallery-category-image img {
    transform:
        scale(1.04);
}


.gallery-category-button:hover
.gallery-category-overlay {
    opacity:
        1;
}


.gallery-category-info {
    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        1rem;

    padding:
        1.2rem;
}


.gallery-category-info small {
    display:
        block;

    margin-bottom:
        0.35rem;

    color:
        var(--accent);

    font-size:
        0.72rem;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        0.08em;
}


.gallery-category-info h3 {
    margin:
        0;

    font-size:
        1.1rem;
}


.gallery-photo-count {
    flex:
        0 0 auto;

    padding:
        0.4rem
        0.7rem;

    border:
        1px solid
        var(--border);

    border-radius:
        999px;

    color:
        var(--text-secondary);

    font-size:
        0.75rem;

    white-space:
        nowrap;
}



/* Category with no photos */

.gallery-category-empty {
    display:
        flex;

    min-height:
        200px;

    align-items:
        center;
}


.gallery-empty-content {
    padding:
        1.5rem;
}


.gallery-empty-content small {
    color:
        var(--accent);

    font-weight:
        800;

    text-transform:
        uppercase;
}


.gallery-empty-content p {
    color:
        var(--text-secondary);
}



/* ==================================================
   GALLERY MODAL
================================================== */

.gallery-modal-open {
    overflow:
        hidden;
}


.project-gallery-modal {
    position:
        fixed;

    inset:
        0;

    z-index:
        10000;

    display:
        none;

    align-items:
        center;

    justify-content:
        center;

    padding:
        1rem;
}


.project-gallery-modal.is-open {
    display:
        flex;
}


.project-gallery-backdrop {
    position:
        absolute;

    inset:
        0;

    background:
        rgba(
            0,
            0,
            0,
            0.92
        );
}


.project-gallery-dialog {
    position:
        relative;

    z-index:
        1;

    display:
        flex;

    flex-direction:
        column;

    width:
        min(
            1200px,
            100%
        );

    max-height:
        calc(
            100vh - 2rem
        );

    overflow:
        hidden;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.15
        );

    border-radius:
        var(--radius);

    background:
        #111518;

    color:
        #ffffff;
}



/* Modal header */

.project-gallery-header {
    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        1rem;

    padding:
        1rem
        1.25rem;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );
}


.project-gallery-header small {
    color:
        var(--accent);

    font-size:
        0.7rem;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        0.08em;
}


.project-gallery-header h2 {
    margin:
        0.25rem 0 0;

    font-size:
        1.15rem;
}


.project-gallery-close {
    flex:
        0 0 auto;

    display:
        grid;

    place-items:
        center;

    width:
        44px;

    height:
        44px;

    padding:
        0;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.15
        );

    border-radius:
        50%;

    background:
        rgba(
            255,
            255,
            255,
            0.06
        );

    color:
        #ffffff;

    font-size:
        1.8rem;

    cursor:
        pointer;
}



/* Main image area */

.project-gallery-stage {
    display:
        grid;

    grid-template-columns:
        52px
        minmax(0, 1fr)
        52px;

    align-items:
        center;

    min-height:
        300px;

    background:
        #080a0c;
}


.project-gallery-image-wrapper {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    min-width:
        0;

    height:
        min(
            65vh,
            680px
        );

    padding:
        1rem;
}


.project-gallery-image-wrapper img {
    display:
        block;

    max-width:
        100%;

    max-height:
        100%;

    object-fit:
        contain;
}



/* Previous / Next */

.project-gallery-nav {
    display:
        grid;

    place-items:
        center;

    width:
        44px;

    height:
        60px;

    margin:
        auto;

    padding:
        0;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.15
        );

    border-radius:
        6px;

    background:
        rgba(
            255,
            255,
            255,
            0.06
        );

    color:
        #ffffff;

    font-size:
        1.5rem;

    cursor:
        pointer;
}


.project-gallery-nav:hover,
.project-gallery-close:hover {
    background:
        var(--accent);

    border-color:
        var(--accent);
}



/* Counter */

.project-gallery-footer {
    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        1rem;

    padding:
        0.75rem
        1.25rem;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );
}


.project-gallery-counter {
    font-size:
        0.8rem;

    color:
        rgba(
            255,
            255,
            255,
            0.7
        );
}


.project-gallery-caption {
    font-weight:
        700;
}



/* Thumbnails */

.project-gallery-thumbnails {
    display:
        flex;

    gap:
        0.55rem;

    padding:
        0.75rem
        1rem;

    overflow-x:
        auto;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );
}


.project-gallery-thumbnail {
    flex:
        0 0 72px;

    width:
        72px;

    height:
        54px;

    padding:
        0;

    overflow:
        hidden;

    border:
        2px solid
        transparent;

    border-radius:
        4px;

    background:
        transparent;

    cursor:
        pointer;

    opacity:
        0.6;
}


.project-gallery-thumbnail img {
    display:
        block;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}


.project-gallery-thumbnail:hover,
.project-gallery-thumbnail.is-active {
    opacity:
        1;

    border-color:
        var(--accent);
}



/* ==================================================
   Responsive gallery
================================================== */

@media (
    min-width: 650px
) {

    .gallery-category-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


@media (
    min-width: 1000px
) {

    .gallery-category-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }

}


@media (
    max-width: 600px
) {

    .project-gallery-modal {
        padding:
            0.5rem;
    }


    .project-gallery-stage {
        grid-template-columns:
            42px
            minmax(0, 1fr)
            42px;
    }


    .project-gallery-nav {
        width:
            36px;

        height:
            52px;
    }


    .project-gallery-image-wrapper {
        height:
            55vh;

        padding:
            0.5rem;
    }


    .project-gallery-footer {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            0.25rem;
    }


    .gallery-category-info {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

}




/* ==================================================
   Logo Section
================================================== */

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header .nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    filter:
        none;
}

[data-theme="light"]
.brand-logo {
    filter:
        drop-shadow(
            0 2px 3px
            rgba(0, 0, 0, 0.18)
        );
}

.brand-logo {
    display: block;

    width: 190px;
    height: 58px;

    object-fit: contain;
    object-position: left center;

    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.brand-text small {
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 1100px) {

    .brand-logo {
        width: 160px;
        height: 52px;
    }

}


@media (max-width: 768px) {

    .brand-logo {
        width: 145px;
        height: 48px;
    }

}


@media (max-width: 480px) {

    .brand-logo {
        width: 125px;
        height: 44px;
    }

}

/* ==================================================
   Mobile Logo Section
================================================== */

@media (max-width: 520px) {

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 0.78rem;
    }

    .brand-text small {
        display: none;
    }

}

/* ==================================================
   Improve the Active Navigation State
================================================== */

.main-nav a {
    position: relative;
}

.main-nav a.active {
    color: var(--text-primary);
}

@media (min-width: 900px) {

    .main-nav a.active::after {
        content: "";

        position: absolute;

        left: 0.85rem;
        right: 0.85rem;
        bottom: 0.25rem;

        height: 2px;

        background: var(--accent);

        border-radius: 999px;
    }

}

/* ==================================================
   Improve the Active Mobile Navigation State
================================================== */
@media (max-width: 899px) {

    .main-nav {
        max-height:
            calc(100vh - 95px);

        overflow-y:
            auto;
    }

    .main-nav a.active {
        background: var(--bg-tertiary);
        color: var(--accent);
    }

    .main-nav a {
        width:
            100%;
    }


    .main-nav .nav-quote {
        margin-top:
            0.75rem;
    }

}

/* =====================================================
  Error Page 404 
===================================================== */
.error-page {
    min-height:
        calc(100vh - 160px);

    display:
        flex;

    align-items:
        center;

    padding:
        5rem 0;
}


.error-page-inner {
    max-width:
        760px;
}


.error-page h1 {
    margin:
        0;

    font-size:
        clamp(
            3.5rem,
            10vw,
            7rem
        );

    line-height:
        0.95;

    letter-spacing:
        -0.05em;
}


.error-description {
    max-width:
        580px;

    margin-top:
        1.5rem;

    color:
        var(--text-secondary);

    font-size:
        1.05rem;

    line-height:
        1.7;
}
/* .error-page {
    max-width: 700px;

    padding-top: 4rem;
    padding-bottom: 4rem;
}

.error-page h1 {
    margin: 0;

    font-size:
        clamp(
            3rem,
            10vw,
            6rem
        );

    line-height: 1;
}

.error-page > p:not(
    .section-eyebrow
) {
    max-width: 550px;

    color: var(--text-secondary);

    font-size: 1.05rem;
} */
