/* =========================================================
   BRAYMONT INDUSTRIAL
   Custom Commercial / Industrial Contractor Layout
\========================================================= */

:root {
    --blue: #1267bd;
    --blue-dark: #084a8d;
    --blue-light: #2d84d8;

    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-gray: #eeeeee;
    --mid-gray: #d7d7d7;

    --charcoal: #222222;
    --dark: #151515;
    --text: #303030;
    --muted: #666666;

    --border: #d7d7d7;

    --shell: 1180px;

    --header-height: 150px;
    --nav-height: 66px;
}


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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

    scroll-padding-top:
        calc(
            var(--header-height) +
            var(--nav-height) +
            10px
        );
}

body {
    margin: 0;

    background:
        var(--white);

    color:
        var(--text);

    font-family:
        "Noto Sans Avestan",
        Arial,
        sans-serif;

    line-height:
        1.6;

    overflow-x:
        hidden;
}

body.menu-open {
    overflow:
        hidden;
}

img {
    display:
        block;

    max-width:
        100%;
}

a {
    color:
        inherit;

    text-decoration:
        none;
}

button,
input,
select,
textarea {
    font:
        inherit;
}

button {
    cursor:
        pointer;
}

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

    margin:
        0 auto;
}


/* =========================================================
   DESKTOP
   NO SPLASH
\========================================================= */

#braymont-splash {
    display:
        none;
}


/* =========================================================
   TOP HEADER
\========================================================= */

.top-header {
    position:
        relative;

    z-index:
        1000;

    height:
        150px;

    background:
        var(--white);

    border-bottom:
        1px solid #ececec;

    overflow:
        visible;
}

.top-header-inner {
    width:
        min(
            1450px,
            calc(100% - 40px)
        );

    height:
        150px;

    margin:
        0 auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        32px;

    overflow:
        visible;
}


/* =========================================================
   DESKTOP HEADER LOGO
\========================================================= */

.brand-lockup {
    display:
        flex;

    align-items:
        center;

    justify-content:
        flex-start;

    width:
        620px;

    min-width:
        620px;

    height:
        150px;

    overflow:
        visible;
}

.brand-logo {
    display:
        block;

    width:
        600px;

    height:
        135px;

    max-width:
        none;

    max-height:
        none;

    object-fit:
        contain;

    object-position:
        left center;

    transform:
        translateY(3px)
        scale(1.15);

    transform-origin:
        left center;

    opacity:
        0;

    animation:
        desktopHeaderLogoFade
        0.9s
        ease-out
        0.15s
        forwards;
}

@keyframes desktopHeaderLogoFade {

    from {
        opacity:
            0;
    }

    to {
        opacity:
            1;
    }

}


/* =========================================================
   HEADER CONTACT / ACTIONS
\========================================================= */

.header-actions {
    display:
        flex;

    align-items:
        center;

    gap:
        24px;

    position:
        relative;

    z-index:
        2;
}

.header-contact {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    gap:
        2px;

    padding:
        8px 0;
}

.header-contact-label {
    color:
        var(--blue);

    font-size:
        0.68rem;

    font-weight:
        800;

    letter-spacing:
        0.13em;

    text-transform:
        uppercase;
}

.header-contact-value {
    color:
        var(--charcoal);

    font-size:
        0.82rem;

    font-weight:
        700;
}

.header-cta {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        48px;

    padding:
        0 22px;

    background:
        var(--blue);

    color:
        var(--white);

    font-size:
        0.78rem;

    font-weight:
        800;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;

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

.header-cta:hover {
    background:
        var(--blue-dark);

    transform:
        translateY(-1px);
}


/* =========================================================
   MOBILE MENU BUTTON
\========================================================= */

.mobile-menu-toggle {
    display:
        none;

    width:
        46px;

    height:
        46px;

    padding:
        0;

    background:
        transparent;

    border:
        0;
}

.mobile-menu-toggle span {
    display:
        block;

    width:
        26px;

    height:
        2px;

    margin:
        5px auto;

    background:
        var(--charcoal);

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


/* =========================================================
   MAIN NAVIGATION
\========================================================= */

.main-nav {
    position:
        sticky;

    top:
        0;

    z-index:
        999;

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

    border-bottom:
        4px solid
        var(--blue);

    box-shadow:
        0 5px 14px
        rgba(
            0,
            0,
            0,
            0.06
        );
}

.main-nav-inner {
    width:
        min(
            1380px,
            calc(100% - 24px)
        );

    min-height:
        var(--nav-height);

    margin:
        0 auto;

    display:
        flex;

    align-items:
        stretch;

    justify-content:
        center;
}

.nav-link {
    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

   min-width:
    auto;

    padding:
    0 10px;

    color:
        var(--charcoal);

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        0.92rem;

    font-weight:
        600;

    letter-spacing:
        0.02em;

    text-transform:
        uppercase;

    white-space:
        nowrap;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}.nav-link {
    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-width:
        auto;

    padding:
        0 10px;

    color:
        var(--charcoal);

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        1rem;

    font-weight:
        600;

    letter-spacing:
        0.03em;

    text-transform:
        uppercase;

    white-space:
        nowrap;

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

.nav-link:not(:last-child)::after {
    content:
        "";

    position:
        absolute;

    right:
        0;

    top:
        30%;

    width:
        1px;

    height:
        40%;

    background:
        #bdbdbd;
}

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

    background:
        #fafafa;
}


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

.hero {
    position:
        relative;

    min-height:
        690px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        url("../../images/pic01.jpg")
        center center /
        cover
        no-repeat;

    overflow:
        hidden;
}

.hero-overlay {
    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            rgba(
                12,
                12,
                12,
                0.55
            ),
            rgba(
                12,
                12,
                12,
                0.68
            )
        );
}

.hero::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    z-index:
        1;

    background:
        linear-gradient(
            90deg,
            rgba(
                5,
                63,
                125,
                0.22
            ),
            transparent 28%,
            transparent 72%,
            rgba(
                5,
                63,
                125,
                0.10
            )
        );

    pointer-events:
        none;
}

.hero-content {
    position:
        relative;

    z-index:
        2;

    width:
        min(
            1040px,
            calc(100% - 40px)
        );

    margin:
        0 auto;

    padding:
        70px 20px;

    text-align:
        center;

    color:
        var(--white);
}

.hero-logo {
    width:
        min(
            310px,
            64vw
        );

    margin:
        0 auto 26px;

    filter:
        brightness(0)
        invert(1)
        drop-shadow(
            0 8px 14px
            rgba(
                0,
                0,
                0,
                0.35
            )
        );
}

.hero h1 {
    margin:
        0;

    color:
        var(--white);

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        clamp(
            3.4rem,
            7vw,
            6.7rem
        );

    font-weight:
        600;

    line-height:
        0.98;

    letter-spacing:
        0.035em;

    text-transform:
        uppercase;

    text-shadow:
        0 5px 22px
        rgba(
            0,
            0,
            0,
            0.45
        );
}

.hero-rule {
    width:
        min(
            620px,
            76vw
        );

    height:
        5px;

    margin:
        30px auto 18px;

    background:
        var(--blue-light);

    box-shadow:
        0 3px 14px
        rgba(
            0,
            0,
            0,
            0.24
        );
}

.hero-kicker {
    margin:
        0;

    color:
        var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            1.35rem,
            2.2vw,
            2rem
        );

    font-weight:
        700;
}

.hero-services {
    max-width:
        900px;

    margin:
        20px auto 0;

    color:
        #f2f2f2;

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        clamp(
            1rem,
            1.7vw,
            1.3rem
        );

    font-weight:
        500;

    letter-spacing:
        0.05em;
}

.hero-actions {
    display:
        flex;

    justify-content:
        center;

    gap:
        14px;

    margin-top:
        34px;
}


/* =========================================================
   BUTTONS
\========================================================= */

.btn {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        50px;

    padding:
        0 26px;

    border:
        2px solid
        transparent;

    font-size:
        0.78rem;

    font-weight:
        800;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;

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

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

.btn-primary {
    background:
        var(--blue);

    color:
        var(--white);
}

.btn-primary:hover {
    background:
        var(--blue-dark);
}

.btn-outline-light {
    border-color:
        rgba(
            255,
            255,
            255,
            0.85
        );

    color:
        var(--white);

    background:
        rgba(
            255,
            255,
            255,
            0.06
        );
}

.btn-outline-light:hover {
    background:
        var(--white);

    color:
        var(--charcoal);
}


/* =========================================================
   GENERIC SECTION HEADING
\========================================================= */

.section-heading {
    max-width:
        780px;

    margin-bottom:
        42px;
}

.section-heading.centered {
    margin-left:
        auto;

    margin-right:
        auto;

    text-align:
        center;
}

.eyebrow {
    display:
        block;

    margin-bottom:
        8px;

    color:
        var(--blue);

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        0.9rem;

    font-weight:
        700;

    letter-spacing:
        0.14em;

    text-transform:
        uppercase;
}

.eyebrow.light {
    color:
        #8dc5ff;
}

.section-heading h2,
.about-content h2,
.contact-copy h2 {
    margin:
        0;

    color:
        var(--charcoal);

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        clamp(
            2.2rem,
            4vw,
            3.7rem
        );

    font-weight:
        600;

    line-height:
        1.08;

    letter-spacing:
        0.02em;

    text-transform:
        uppercase;
}

.section-heading p {
    margin:
        16px 0 0;

    color:
        var(--muted);
}


/* =========================================================
   MARKETS
\========================================================= */

.market-strip {
    padding:
        50px 0 60px;

    background:
        var(--light-gray);

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

.strip-title {
    margin:
        0 0 38px;

    text-align:
        center;

    color:
        var(--blue);

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        clamp(
            2rem,
            3.6vw,
            3.25rem
        );

    font-weight:
        600;

    letter-spacing:
        0.02em;
}

.market-grid {
    display:
        grid;

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

    gap:
        0;

    background:
        var(--white);

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

.market-item {
    position:
        relative;

    padding:
        34px 28px;

    text-align:
        center;
}

.market-item:not(:last-child)::after {
    content:
        "";

    position:
        absolute;

    right:
        0;

    top:
        16%;

    width:
        1px;

    height:
        68%;

    background:
        var(--border);
}

.market-icon {
    width:
        54px;

    height:
        54px;

    margin:
        0 auto 16px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        2px solid
        var(--blue);

    color:
        var(--blue);

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        1.1rem;

    font-weight:
        700;
}

.market-item h3 {
    margin:
        0 0 10px;

    color:
        var(--charcoal);

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        1.35rem;

    text-transform:
        uppercase;
}

.market-item p {
    margin:
        0;

    color:
        var(--muted);

    font-size:
        0.88rem;
}


/* =========================================================
   SERVICES
\========================================================= */

.services-section {
    padding:
        86px 0;

    background:
        var(--white);
}

.services-grid {
    display:
        grid;

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

    gap:
        28px;
}

.service-card {
    display:
        grid;

    grid-template-columns:
        1fr;

    background:
        var(--off-white);

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

    box-shadow:
        0 8px 24px
        rgba(
            0,
            0,
            0,
            0.05
        );

    overflow:
        hidden;

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

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

    box-shadow:
        0 18px 36px
        rgba(
            0,
            0,
            0,
            0.10
        );
}

.service-card-wide {
    grid-column:
        1 / -1;

    grid-template-columns:
        1.08fr 0.92fr;
}

.service-image-wrap {
    height:
        300px;

    overflow:
        hidden;

    background:
        #ddd;
}

.service-card-wide
.service-image-wrap {
    height:
        auto;

    min-height:
        360px;
}

.service-image {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 0.45s ease;
}

.service-card:hover
.service-image {
    transform:
        scale(1.04);
}

.service-content {
    position:
        relative;

    padding:
        34px;

    background:
        var(--white);

    border-top:
        4px solid
        var(--blue);
}

.service-card-wide
.service-content {
    border-top:
        0;

    border-left:
        4px solid
        var(--blue);
}

.service-number {
    display:
        block;

    margin-bottom:
        8px;

    color:
        var(--blue);

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        0.88rem;

    font-weight:
        700;

    letter-spacing:
        0.12em;
}

.service-content h3 {
    margin:
        0;

    color:
        var(--charcoal);

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        1.75rem;

    line-height:
        1.1;

    text-transform:
        uppercase;
}

.service-content p {
    margin:
        16px 0;

    color:
        var(--muted);
}

.service-content ul {
    margin:
        0 0 20px;

    padding-left:
        18px;

    color:
        var(--text);
}

.service-content li {
    margin-bottom:
        6px;
}

.service-content li::marker {
    color:
        var(--blue);
}

.text-link {
    display:
        inline-block;

    color:
        var(--blue);

    font-size:
        0.76rem;

    font-weight:
        800;

    letter-spacing:
        0.1em;

    text-transform:
        uppercase;

    border-bottom:
        2px solid
        var(--blue);
}


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

.about-section {
    padding:
        90px 0;

    background:
        var(--light-gray);
}

.about-grid {
    display:
        grid;

    grid-template-columns:
        1.05fr 0.95fr;

    align-items:
        stretch;

    gap:
        56px;
}

.about-image-wrap {
    min-height:
        560px;

    overflow:
        hidden;

    box-shadow:
        0 14px 34px
        rgba(
            0,
            0,
            0,
            0.12
        );
}

.about-image {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}

.about-content {
    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;
}

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

    margin:
        18px 0 0;
}

.about-content .btn {
    align-self:
        flex-start;

    margin-top:
        28px;
}


/* =========================================================
   VALUES
\========================================================= */

.values-section {
    padding:
        86px 0;

    background:
        var(--white);
}

.values-grid {
    display:
        grid;

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

    gap:
        22px;
}

.value-card {
    position:
        relative;

    padding:
        34px 26px;

    background:
        var(--off-white);

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

    border-top:
        4px solid
        var(--blue);
}

.value-mark {
    width:
        56px;

    height:
        56px;

    margin-bottom:
        20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--blue);

    color:
        var(--white);

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        1.3rem;

    font-weight:
        700;
}

.value-card h3 {
    margin:
        0 0 10px;

    color:
        var(--charcoal);

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        1.4rem;

    text-transform:
        uppercase;
}

.value-card p {
    margin:
        0;

    color:
        var(--muted);

    font-size:
        0.9rem;
}


/* =========================================================
   PROCESS
\========================================================= */

.process-section {
    padding:
        78px 0 90px;

    background:
        var(--light-gray);
}

.process-grid {
    display:
        grid;

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

    gap:
        18px;
}

.process-card {
    position:
        relative;

    min-height:
        240px;

    padding:
        32px 26px;

    background:
        var(--white);

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

.process-card span {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        46px;

    height:
        46px;

    margin-bottom:
        18px;

    background:
        var(--blue);

    color:
        var(--white);

    font-family:
        "Oswald",
        sans-serif;

    font-weight:
        700;
}

.process-card h3 {
    margin:
        0;

    color:
        var(--charcoal);

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        1.35rem;

    text-transform:
        uppercase;
}

.process-card p {
    margin:
        12px 0 0;

    color:
        var(--muted);

    font-size:
        0.9rem;
}


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

.contact-section {
    padding:
        88px 0;

    background:
        linear-gradient(
            rgba(
                13,
                13,
                13,
                0.92
            ),
            rgba(
                13,
                13,
                13,
                0.92
            )
        ),
        url("../../images/pic07.jpg")
        center /
        cover
        no-repeat;
}

.contact-grid {
    display:
        grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap:
        70px;

    align-items:
        start;
}

.contact-copy h2 {
    color:
        var(--white);
}

.contact-copy > p {
    color:
        #d7d7d7;

    margin:
        18px 0 0;
}

.contact-details {
    display:
        grid;

    gap:
        18px;

    margin-top:
        36px;
}

.contact-details a,
.contact-details div {
    display:
        flex;

    flex-direction:
        column;

    gap:
        3px;

    padding-bottom:
        15px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.18
        );
}

.contact-details strong {
    color:
        #8dc5ff;

    font-size:
        0.72rem;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;
}

.contact-details span {
    color:
        var(--white);

    font-size:
        0.95rem;
}

.quote-form {
    padding:
        36px;

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

    box-shadow:
        0 14px 38px
        rgba(
            0,
            0,
            0,
            0.26
        );
}

.form-grid {
    display:
        grid;

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

    gap:
        18px;
}

.form-grid label {
    display:
        flex;

    flex-direction:
        column;

    gap:
        7px;
}

.form-grid label.full {
    grid-column:
        1 / -1;
}

.form-grid label > span {
    color:
        var(--charcoal);

    font-size:
        0.72rem;

    font-weight:
        800;

    letter-spacing:
        0.1em;

    text-transform:
        uppercase;
}

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

    border:
        1px solid
        #cfcfcf;

    background:
        var(--white);

    color:
        var(--text);

    padding:
        13px 14px;

    outline:
        none;

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

.quote-form textarea {
    resize:
        vertical;

    min-height:
        130px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color:
        var(--blue);

    box-shadow:
        0 0 0 3px
        rgba(
            18,
            103,
            189,
            0.10
        );
}

.form-submit {
    margin-top:
        22px;

    border:
        0;
}


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

.site-footer {
    background:
        #252525;

    color:
        #d0d0d0;

    border-top:
        5px solid
        var(--blue);
}

.footer-grid {
    display:
        grid;

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

    gap:
        36px;

    padding:
        58px 0;
}

.footer-logo {
    width:
        230px;

    margin-bottom:
        16px;

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

.footer-brand p,
.footer-grid p {
    margin:
        0;

    color:
        #c8c8c8;

    font-size:
        0.88rem;

    line-height:
        1.9;
}

.footer-grid h3 {
    margin:
        0 0 12px;

    color:
        var(--white);

    font-family:
        "Oswald",
        sans-serif;

    font-size:
        1.1rem;

    letter-spacing:
        0.04em;

    text-transform:
        uppercase;
}

.footer-grid a:hover {
    color:
        #8dc5ff;
}

.footer-bottom {
    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.10
        );

    background:
        #171717;
}

.footer-bottom-inner {
    min-height:
        68px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;
}

.footer-bottom p {
    margin:
        0;

    color:
        #8d8d8d;

    font-size:
        0.78rem;
}


/* =========================================================
   TABLET
\========================================================= */

@media (max-width: 1100px) {

    .header-contact {
        display:
            none;
    }

    .nav-link {
        min-width:
            auto;

        padding:
            0 26px;
    }

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

    .market-item:nth-child(2)::after {
        display:
            none;
    }

    .market-item:nth-child(-n+2) {
        border-bottom:
            1px solid
            var(--border);
    }

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

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

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

}


/* =========================================================
   MOBILE
   SPLASH ENABLED
\========================================================= */

@media (max-width: 820px) {

    :root {
        --header-height:
            88px;

        --nav-height:
            0px;
    }


    /* -------------------------------
       MOBILE SPLASH
    -------------------------------- */

    #braymont-splash {
        position:
            fixed;

        inset:
            0;

        z-index:
            999999;

        display:
            flex;

        align-items:
            center;

        justify-content:
            center;

        background:
            radial-gradient(
                circle at 50% 50%,
                rgba(
                    27,
                    102,
                    190,
                    0.20
                ),
                transparent 40%
            ),
            linear-gradient(
                135deg,
                #05070a 0%,
                #08111d 52%,
                #0d3265 100%
            );

        transform:
            translateX(-100%);

        animation:
            mobileSplashIn
            0.85s
            cubic-bezier(
                .77,
                0,
                .18,
                1
            )
            forwards;

        will-change:
            transform;
    }

    .splash-content {
        display:
            flex;

        align-items:
            center;

        justify-content:
            center;

        width:
            100%;

        height:
            100%;

        opacity:
            0;

        transform:
            scale(0.97);
    }

    #braymont-splash.show-logo
    .splash-content {
        animation:
            mobileSplashLogoIn
            0.7s
            ease
            forwards;
    }

    .splash-logo {
        width:
            min(
                350px,
                82vw
            );

        filter:
            drop-shadow(
                0 18px 40px
                rgba(
                    0,
                    0,
                    0,
                    0.72
                )
            )
            drop-shadow(
                0 0 24px
                rgba(
                    47,
                    128,
                    237,
                    0.22
                )
            );
    }

    #braymont-splash.splash-exit {
        animation:
            mobileSplashOut
            0.85s
            cubic-bezier(
                .77,
                0,
                .18,
                1
            )
            forwards;
    }


    /* -------------------------------
       MOBILE SPLASH ANIMATIONS
    -------------------------------- */

    @keyframes mobileSplashIn {

        from {
            transform:
                translateX(-100%);
        }

        to {
            transform:
                translateX(0);
        }

    }

    @keyframes mobileSplashLogoIn {

        from {
            opacity:
                0;

            transform:
                scale(0.97)
                translateY(5px);
        }

        to {
            opacity:
                1;

            transform:
                scale(1)
                translateY(0);
        }

    }

    @keyframes mobileSplashOut {

        from {
            transform:
                translateX(0);
        }

        to {
            transform:
                translateX(100%);
        }

    }


    /* -------------------------------
       MOBILE HEADER
    -------------------------------- */

    .top-header {
        position:
            sticky;

        top:
            0;

        height:
            var(--header-height);

        overflow:
            visible;
    }

    .top-header-inner {
        width:
            calc(100% - 30px);

        height:
            var(--header-height);

        gap:
            15px;
    }

    .brand-lockup {
        display:
            flex;

        align-items:
            center;

        justify-content:
            flex-start;

        width:
            270px;

        min-width:
            0;

        height:
            100%;

        overflow:
            visible;
    }

    .brand-logo {
        display:
            block;

        width:
            260px;

        height:
            72px;

        max-width:
            100%;

        max-height:
            none;

        object-fit:
            contain;

        object-position:
            left center;

        opacity:
            1;

        animation:
            none;

        transform:
            none;
    }

    .header-actions {
        display:
            none;
    }

    .mobile-menu-toggle {
        display:
            block;

        flex-shrink:
            0;
    }


    /* -------------------------------
       MOBILE NAV
    -------------------------------- */

    .main-nav {
        position:
            fixed;

        top:
            var(--header-height);

        left:
            0;

        right:
            0;

        z-index:
            998;

        max-height:
            0;

        overflow:
            hidden;

        border-bottom:
            0;

        background:
            var(--white);

        box-shadow:
            0 14px 26px
            rgba(
                0,
                0,
                0,
                0.14
            );

        transition:
            max-height 0.3s ease;
    }

    body.menu-open
    .main-nav {
        max-height:
            460px;

        border-bottom:
            4px solid
            var(--blue);
    }

    .main-nav-inner {
        width:
            100%;

        display:
            block;
    }

    .nav-link {
        width:
            100%;

        min-height:
            58px;

        justify-content:
            flex-start;

        padding:
            0 24px;

        border-bottom:
            1px solid
            #e7e7e7;
    }

    .nav-link::after {
        display:
            none !important;
    }

    body.menu-open
    .mobile-menu-toggle
    span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    body.menu-open
    .mobile-menu-toggle
    span:nth-child(2) {
        opacity:
            0;
    }

    body.menu-open
    .mobile-menu-toggle
    span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }


    /* -------------------------------
       MOBILE HERO
    -------------------------------- */

    .hero {
        min-height:
            620px;
    }

    .hero-content {
        padding:
            62px 10px;
    }

    .hero h1 {
        font-size:
            clamp(
                3rem,
                12vw,
                5rem
            );
    }

    .hero-actions {
        flex-direction:
            column;

        align-items:
            center;
    }

    .hero-actions
    .btn {
        width:
            min(
                340px,
                100%
            );
    }


    /* -------------------------------
       MOBILE SERVICES
    -------------------------------- */

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

    .service-card-wide {
        grid-column:
            auto;

        grid-template-columns:
            1fr;
    }

    .service-card-wide
    .service-image-wrap {
        min-height:
            300px;
    }

    .service-card-wide
    .service-content {
        border-left:
            0;

        border-top:
            4px solid
            var(--blue);
    }


    /* -------------------------------
       MOBILE ABOUT
    -------------------------------- */

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

        gap:
            34px;
    }

    .about-image-wrap {
        min-height:
            400px;
    }


    /* -------------------------------
       MOBILE FORM
    -------------------------------- */

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

    .form-grid
    label.full {
        grid-column:
            auto;
    }

}


/* =========================================================
   SMALL PHONES
\========================================================= */

@media (max-width: 560px) {

    .section-shell {
        width:
            calc(100% - 28px);
    }


    /* Header logo */

    .brand-lockup {
        width:
            225px;
    }

    .brand-logo {
        width:
            220px;

        height:
            68px;
    }


    /* Hero */

    .hero {
        min-height:
            590px;
    }

    .hero-logo {
        width:
            min(
                250px,
                68vw
            );
    }

    .hero h1 {
        font-size:
            clamp(
                2.6rem,
                13vw,
                4rem
            );
    }

    .hero-kicker {
        font-size:
            1.2rem;
    }

    .hero-services {
        font-size:
            0.98rem;

        line-height:
            1.7;
    }


    /* Markets */

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

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

    .market-item:last-child {
        border-bottom:
            0;
    }

    .market-item::after {
        display:
            none !important;
    }


    /* Section spacing */

    .services-section,
    .about-section,
    .values-section,
    .process-section,
    .contact-section {
        padding:
            64px 0;
    }


    /* Services */

    .service-image-wrap,
    .service-card-wide
    .service-image-wrap {
        height:
            245px;

        min-height:
            0;
    }

    .service-content {
        padding:
            26px 22px;
    }


    /* Cards */

    .values-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns:
            1fr;
    }


    /* About */

    .about-image-wrap {
        min-height:
            300px;
    }


    /* Quote form */

    .quote-form {
        padding:
            26px 20px;
    }


    /* Footer */

    .footer-bottom-inner {
        padding:
            18px 0;

        display:
            block;

        text-align:
            center;
    }

    .footer-bottom
    p + p {
        margin-top:
            6px;
    }

}


/* =========================================================
   VERY SMALL PHONES
\========================================================= */

@media (max-width: 390px) {

    .brand-lockup {
        width:
            195px;
    }

    .brand-logo {
        width:
            190px;

        height:
            62px;
    }

    .mobile-menu-toggle {
        width:
            42px;

        height:
            42px;
    }

}


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

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

    html {
        scroll-behavior:
            auto;
    }

    .brand-logo {
        opacity:
            1 !important;

        animation:
            none !important;
    }

    .service-card,
    .service-image,
    .btn,
    .header-cta {
        transition:
            none;
    }

}
/* =========================================================
   DESKTOP HEADER LOGO
   SMOOTH SLIDE IN + FADE IN
\========================================================= */

@media (min-width: 821px) {

    .brand-lockup {
        overflow: visible !important;
    }

    .brand-logo {
        width: 600px !important;
        height: 135px !important;

        max-width: none !important;
        max-height: none !important;

        object-fit: contain !important;
        object-position: left center !important;

        transform-origin: left center !important;

        opacity: 0;

        animation:
            headerLogoSlideIn
            1.4s
            cubic-bezier(0.16, 1, 0.3, 1)
            0.15s
            forwards
            !important;
    }

    @keyframes headerLogoSlideIn {

        0% {
            opacity: 0;

            transform:
                translateX(-180px)
                translateY(3px)
                scale(1.15);
        }

        30% {
            opacity: 0.25;
        }

        60% {
            opacity: 0.75;
        }

        100% {
            opacity: 1;

            transform:
                translateX(0)
                translateY(3px)
                scale(1.15);
        }
    }
}
/* =========================================================
   NAVBAR FINAL
   18PX TEXT + FULL WIDTH BLUE HOVER
\========================================================= */

@media (min-width: 821px) {

    .nav-link {
        position: relative;
        z-index: 1;

        /* Tamaño de letra */
        font-family: "Montserrat", Arial, sans-serif;
        font-size: 18px !important;
        font-weight: 600;
        letter-spacing: 0.03em;
        text-transform: uppercase;

        color: var(--charcoal) !important;
        background: transparent !important;

        transition:
            color 0.22s ease !important;
    }


    /* =====================================================
       BLUE HOVER BAR
    ===================================================== */

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

        position: absolute;

        /* Todo el espacio entre divisores */
        left: 0;
        right: 0;

        /* Centrado con las letras */
        top: 50%;

        /* Apenas más alto que las letras */
        height: calc(1em + 4px);

        transform: translateY(-50%);

        background: var(--blue);

        opacity: 0;

        z-index: -1;

        transition:
            opacity 0.22s ease;
    }


    /* =====================================================
       HOVER
    ===================================================== */

    .nav-link:hover {
        color: #ffffff !important;
        background: transparent !important;
    }

    .nav-link:hover::before {
        opacity: 1 !important;
    }


    /* =====================================================
       ACTIVE
       Evita que HOME quede azul
    ===================================================== */

    .nav-link.active,
    .nav-link.active:focus,
    .nav-link.active:active {
        color: var(--charcoal) !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .nav-link.active::before {
        opacity: 0 !important;
    }


    /* ACTIVE + HOVER */

    .nav-link.active:hover {
        color: #ffffff !important;
    }

    .nav-link.active:hover::before {
        opacity: 1 !important;
    }
}
/* =========================================================
   SMALL GAP BETWEEN HEADER AND NAVBAR
\========================================================= */

@media (min-width: 821px) {

    .main-nav {
        margin-top: 8px !important;
    }

}
/* =========================================================
   DESKTOP NAV — WIDER LINK SPACING
   ONLY CHANGES WIDTH
\========================================================= */

@media (min-width: 821px) {

    .nav-link {
        min-width: 210px !important;
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

}
/* =========================================================
   NAVBAR ONLY — BEBAS NEUE CLEAN
\========================================================= */

@media (min-width: 821px) {

    .main-nav .nav-link {
        font-family: "Bebas Neue", sans-serif !important;
        font-size: 22px !important;
        font-weight: 400 !important;
        letter-spacing: 0.01em !important;

        text-shadow: none !important;
    }

    /* Separadores | oscuros pero finos */
    .main-nav .nav-link:not(:last-child)::after {
        width: 1px !important;
        background: #707070 !important;
    }

}
/* =========================================================
   BRAYMONT — DESKTOP HEADER ACTIONS FINAL
   Quote / Location / Email
\========================================================= */

@media (min-width: 821px) {

    /* -----------------------------------------------------
       HEADER LAYOUT
    ----------------------------------------------------- */

    .top-header-inner {
        width: min(1500px, calc(100% - 40px)) !important;

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

        gap: 20px !important;
    }


    /* -----------------------------------------------------
       LOGO POSITION
    ----------------------------------------------------- */

    .brand-lockup {
        width: 620px !important;
        min-width: 620px !important;

        height: 150px !important;

        display: flex !important;
        align-items: center !important;

        /* mueve ligeramente el logo hacia el centro */
        transform: translateX(35px);
    }


    /* -----------------------------------------------------
       HEADER ACTIONS
    ----------------------------------------------------- */

    .header-actions {
        display: flex !important;

        align-items: stretch !important;
        justify-content: flex-end !important;

        height: 82px !important;

        gap: 0 !important;

        margin-left: auto !important;
    }


    /* -----------------------------------------------------
       EACH BUTTON
    ----------------------------------------------------- */

    .header-action-button {
        position: relative;

        display: flex !important;

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

        gap: 13px !important;

        width: 190px;
        height: 82px;

        padding: 0 18px !important;

        background: transparent;

        border-left: 1px solid #d3d3d3;

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


    /* Email needs more room */

    .header-action-button:last-child {
        width: 270px;

        border-right: 1px solid #d3d3d3;
    }


    /* -----------------------------------------------------
       ICON
    ----------------------------------------------------- */

    .header-action-icon {
        display: block;

        width: 32px !important;
        height: 32px !important;

        min-width: 32px;

        object-fit: contain;

        flex-shrink: 0;

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


    /* -----------------------------------------------------
       TEXT CONTAINER
    ----------------------------------------------------- */

    .header-action-text {
        display: flex;

        flex-direction: column;

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

        line-height: 1.2;
    }


    /* -----------------------------------------------------
       TITLE
    ----------------------------------------------------- */

    .header-action-title {
        display: block;

        color: var(--blue);

        font-family:
            "Montserrat",
            Arial,
            sans-serif;

        font-size: 12px;

        font-weight: 700;

        letter-spacing: 0.045em;

        text-transform: uppercase;

        white-space: nowrap;

        transition:
            color 0.25s ease;
    }


    /* -----------------------------------------------------
       SUBTITLE
    ----------------------------------------------------- */

    .header-action-subtitle {
        display: block;

        margin-top: 4px;

        color: #404040;

        font-family:
            "Montserrat",
            Arial,
            sans-serif;

        font-size: 11px;

        font-weight: 500;

        letter-spacing: 0;

        white-space: nowrap;

        transition:
            color 0.25s ease;
    }


    /* -----------------------------------------------------
       HOVER
    ----------------------------------------------------- */

    .header-action-button:hover {
        background: var(--blue);
    }


    .header-action-button:hover
    .header-action-title,

    .header-action-button:hover
    .header-action-subtitle {
        color: #ffffff;
    }


    .header-action-button:hover
    .header-action-icon {
        transform: scale(1.08);
    }

}


/* =========================================================
   TABLET — KEEP HEADER FROM OVERFLOWING
\========================================================= */

@media (min-width: 821px) and (max-width: 1250px) {

    .brand-lockup {
        width: 480px !important;
        min-width: 480px !important;

        transform: translateX(10px);
    }

    .brand-logo {
        width: 480px !important;
    }

    .header-action-button {
        width: 165px;

        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .header-action-button:last-child {
        width: 220px;
    }

    .header-action-icon {
        width: 27px !important;
        height: 27px !important;

        min-width: 27px;
    }

    .header-action-title {
        font-size: 11px;
    }

    .header-action-subtitle {
        font-size: 10px;
    }

}


/* =========================================================
   MOBILE
   Keep action buttons hidden
\========================================================= */

@media (max-width: 820px) {

    .header-actions {
        display: none !important;
    }

}
/* =========================================================
   BRAYMONT HEADER + NAV
   FINAL DESKTOP DESIGN
\========================================================= */

@media (min-width: 821px) {

    /* =====================================================
       TOP HEADER
    ===================================================== */

    .top-header {
        position: relative !important;

        width: 100% !important;
        height: 172px !important;

        background: #ffffff !important;

        border: 0 !important;

        overflow: visible !important;

        z-index: 1000;
    }


    .top-header-inner {
        width: min(1500px, calc(100% - 60px)) !important;
        height: 172px !important;

        margin: 0 auto !important;

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

        gap: 40px !important;

        overflow: visible !important;
    }


    /* =====================================================
       LOGO
    ===================================================== */

    .brand-lockup {
        width: 600px !important;
        min-width: 600px !important;

        height: 150px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        overflow: visible !important;

        /*
           Moves the logo slightly toward
           the center of the page.
        */
        transform: translateX(45px);
    }


    .brand-logo {
        width: 570px !important;
        height: 132px !important;

        max-width: none !important;
        max-height: none !important;

        object-fit: contain !important;
        object-position: left center !important;

        transform-origin: left center !important;

        opacity: 0;

        animation:
            braymontHeaderLogoIn
            1.4s
            cubic-bezier(0.16, 1, 0.3, 1)
            0.15s
            forwards
            !important;
    }


    @keyframes braymontHeaderLogoIn {

        0% {
            opacity: 0;

            transform:
                translateX(-150px)
                translateY(3px)
                scale(1.15);
        }

        35% {
            opacity: 0.3;
        }

        65% {
            opacity: 0.8;
        }

        100% {
            opacity: 1;

            transform:
                translateX(0)
                translateY(3px)
                scale(1.15);
        }

    }


    /* =====================================================
       RIGHT CONTACT AREA
    ===================================================== */

    .header-actions {
        display: flex !important;

        align-items: center !important;
        justify-content: flex-end !important;

        height: 76px !important;

        gap: 0 !important;

        margin-left: auto !important;
    }


    /* Small contact blocks */

    .header-mini-action {
        position: relative;

        height: 60px;

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

        gap: 10px;

        padding: 0 18px;

        color: #222222;

        border-left: 1px solid #d5d5d5;

        background: transparent;

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


    .header-mini-action:nth-child(1) {
        min-width: 155px;
    }


    .header-mini-action:nth-child(2) {
        min-width: 235px;
    }


    .header-mini-action:nth-child(3) {
        min-width: 185px;
    }


    /* ICON */

    .header-mini-icon {
        width: 25px;
        height: 25px;

        flex-shrink: 0;

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

        color: var(--blue);
    }


    .header-mini-icon svg {
        width: 23px;
        height: 23px;

        display: block;

        fill: currentColor;
    }


    /* CONTACT TEXT */

    .header-mini-text {
        display: flex;
        flex-direction: column;

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

        line-height: 1.15;
    }


    .header-mini-text strong {
        color: var(--blue);

        font-family:
            "Montserrat",
            Arial,
            sans-serif;

        font-size: 10px;

        font-weight: 700;

        letter-spacing: 0.08em;
    }


    .header-mini-text small {
        margin-top: 4px;

        color: #444444;

        font-family:
            "Montserrat",
            Arial,
            sans-serif;

        font-size: 10px;

        font-weight: 500;

        white-space: nowrap;
    }


    /* CONTACT HOVER */

    .header-mini-action:hover {
        background: #f6f6f6;
    }


    .header-mini-action:hover
    .header-mini-icon {
        color: var(--blue-dark);
    }


    /* =====================================================
       REQUEST A QUOTE BUTTON
    ===================================================== */

    .header-quote-button {
        height: 52px;

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

        padding: 0 25px;

        margin-left: 16px;

        background: var(--blue) !important;

        color: #ffffff !important;

        font-family:
            "Montserrat",
            Arial,
            sans-serif;

        font-size: 11px;

        font-weight: 700;

        letter-spacing: 0.08em;

        white-space: nowrap;

        transition:
            background-color 0.22s ease,
            transform 0.22s ease;
    }


    .header-quote-button:hover {
        background: var(--blue-dark) !important;

        transform: translateY(-1px);
    }


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

    .main-nav {
        position: sticky !important;

        top: 0;

        width: 100% !important;

        margin-top: 4px !important;

        background: #ffffff !important;

        border: 0 !important;

        border-bottom:
            4px solid
            var(--blue)
            !important;

        box-shadow:
            0 4px 10px
            rgba(0, 0, 0, 0.05)
            !important;

        z-index: 999;
    }


    .main-nav-inner {
        width: 100% !important;

        min-height: 62px !important;

        margin: 0 !important;

        padding: 0 !important;

        display: grid !important;

        /*
           EXACTLY 9 EQUAL NAV ITEMS
        */
        grid-template-columns:
            repeat(9, minmax(0, 1fr))
            !important;

        align-items: stretch !important;
    }


    /* =====================================================
       EACH NAV ITEM
    ===================================================== */

    .main-nav .nav-link {
        position: relative;

        width: 100% !important;
        min-width: 0 !important;

        height: 62px !important;

        padding: 0 10px !important;

        display: flex !important;

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

        background: transparent !important;

        color: #111111 !important;

        font-family:
            "Bebas Neue",
            sans-serif
            !important;

        font-size: 18px !important;

        font-weight: 400 !important;

        letter-spacing: 0.01em !important;

        text-align: center;

        text-transform: uppercase;

        text-shadow: none !important;

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


    /* =====================================================
       BLACK VERTICAL DIVIDERS
    ===================================================== */

    .main-nav
    .nav-link:not(:last-child)::after {
        content: "";

        position: absolute;

        right: 0;
        top: 20%;

        width: 1px !important;
        height: 60% !important;

        background: #222222 !important;

        opacity: 1 !important;
    }


    /* =====================================================
       NAV HOVER
    ===================================================== */

    .main-nav .nav-link::before {
        content: "";

        position: absolute;

        left: 0;
        right: 0;

        top: 50%;

        height: calc(1em + 4px);

        transform: translateY(-50%);

        background: var(--blue);

        opacity: 0;

        z-index: -1;

        transition:
            opacity 0.2s ease;
    }


    .main-nav .nav-link:hover {
        color: #ffffff !important;

        background: transparent !important;
    }


    .main-nav .nav-link:hover::before {
        opacity: 1 !important;
    }


    /* Prevent active link from staying blue */

    .main-nav .nav-link.active,
    .main-nav .nav-link.active:focus,
    .main-nav .nav-link.active:active {
        color: #111111 !important;

        background: transparent !important;

        box-shadow: none !important;
    }


    .main-nav .nav-link.active::before {
        opacity: 0 !important;
    }


    .main-nav .nav-link.active:hover {
        color: #ffffff !important;
    }


    .main-nav
    .nav-link.active:hover::before {
        opacity: 1 !important;
    }

}
@media (min-width: 821px) {

    .header-actions {
        gap: 10px !important;
    }

}
/* =========================================================
   HEADER ICONS — POSITION + SIZE
\========================================================= */

/* =========================================================
   HEADER ICONS — FINAL CLEAN VERSION
\========================================================= */

@media (min-width: 821px) {

    .header-actions {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-end !important;

        align-self: flex-start !important;

        margin-top: 24px !important; /* altura */
        margin-left: auto !important;
        margin-right: 521px !important;

        height: auto !important;

        gap: 1px !important;
    }


    .header-icon-button {
        width: 34px !important;
        height: 42px !important;

        padding: 0 !important;
        margin: 0 !important;

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

        background: transparent !important;
        border: 0 !important;
    }


    .header-icon-button .header-action-icon {
        display: block !important;

        width: 32px !important;
        height: 32px !important;

        max-width: none !important;

        object-fit: contain !important;
        object-position: center !important;

        margin: 0 !important;
        padding: 0 !important;
    }

}
/* Los 3 iconos */
.header-icon-button .header-action-icon {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* LOCATION — compensación visual */
.header-icon-button img[src*="icon-quote"] {
    width: 35px !important;
    height: 35px !important;
}
/* EMAIL — compensación visual */
.header-icon-button img[src*="icon-email"] {
    width: 35px !important;
    height: 35px !important;
}
@media (min-width: 821px) {

    .top-header-inner {
        position: relative !important;
    }

    .brand-lockup {
        position: absolute !important;

        left: 31.25% !important;
        transform: translateX(-50%) !important;
    }

}

/* =========================================================
   NAV TEXT SIZE — FINAL OVERRIDE
   This is intentionally last so it wins over older rules.
========================================================= */
@media (min-width: 821px) {
    .main-nav .nav-link {
        font-size: 22px !important;
    }
}


/* =========================================================
   BRAYMONT NAVBAR — FINAL VISUAL OVERRIDE
   Keeps current layout/positions; only refines typography,
   dividers, and blue hover treatment.
========================================================= */

@media (min-width: 821px) {

    .main-nav .nav-link {
        position: relative !important;
        z-index: 1 !important;

        font-family: "Bebas Neue", sans-serif !important;
        font-size: 22px !important;
        font-weight: 400 !important;

        /* Letras juntas y visualmente más delgadas */
        letter-spacing: 0.03em !important;
        -webkit-text-stroke: 0.15px white;

        text-transform: uppercase !important;
        text-align: center !important;

        color: #111111 !important;
        background: transparent !important;

        transition: color 0.18s ease !important;
    }

    /* Separadores verticales más cortos */
    .main-nav .nav-link:not(:last-child)::after {
        content: "" !important;

        position: absolute !important;
        right: 0 !important;
        top: 50% !important;

        width: 1px !important;
        height: 20px !important;

        transform: translateY(-50%) !important;

        background: #555555 !important;
        opacity: 1 !important;
        z-index: 3 !important;
    }

    /* Barra azul del hover */
    .main-nav .nav-link::before {
        content: "" !important;

        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 50% !important;

        height: 28px !important;

        transform: translateY(-50%) !important;

        background: var(--blue) !important;
        opacity: 0 !important;
        z-index: -1 !important;

        transition: opacity 0.18s ease !important;
    }

    .main-nav .nav-link:hover {
        color: #ffffff !important;
        background: transparent !important;
        -webkit-text-stroke: 0 !important;
    }

    .main-nav .nav-link:hover::before {
        opacity: 1 !important;
    }

    .main-nav .nav-link.active,
    .main-nav .nav-link.active:focus,
    .main-nav .nav-link.active:active {
        color: #111111 !important;
        background: transparent !important;
        box-shadow: none !important;
        -webkit-text-stroke: 0.15px white;
    }

    .main-nav .nav-link.active::before {
        opacity: 0 !important;
    }

    .main-nav .nav-link.active:hover {
        color: #ffffff !important;
        -webkit-text-stroke: 0 !important;
    }

    .main-nav .nav-link.active:hover::before {
        opacity: 1 !important;
    }
}


/* =========================================================
   HERO — SAFE BRAYMONT ADDITIONS
   These rules style only the NEW hero elements and do not
   overwrite the site's existing hero layout.
========================================================= */

.hero-logo-braymont {
    display: block;
    width: min(360px, 68vw);
    height: auto;
    margin: 0 auto 26px;
    object-fit: contain;

    filter:
        brightness(0)
        invert(1)
        drop-shadow(
            0 8px 14px
            rgba(0, 0, 0, 0.35)
        );
}

.hero-service-area {
    margin: 26px auto 0;

    color: #ffffff;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.4;

    text-transform: uppercase;
}

@media (max-width: 820px) {

    .hero-logo-braymont {
        width: min(280px, 72vw);
        margin-bottom: 22px;
    }

    .hero-service-area {
        margin-top: 22px;
        font-size: 15px;
        letter-spacing: 0.05em;
    }
}
/* =========================================================
   BRAYMONT — GLOBAL TYPOGRAPHY
========================================================= */

/* BODY / PARAGRAPHS / FORMS */
body,
p,
li,
input,
textarea,
select,
button,
label {
    font-family: "Inter", Arial, sans-serif !important;
}


/* ALL HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Barlow Condensed", sans-serif !important;
}


/* SECTION TITLES */
.section-heading h2,
.about-content h2,
.contact-copy h2 {
    font-family: "Barlow Condensed", sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
}


/* SERVICE TITLES */
.service-content h3,
.value-card h3,
.process-card h3,
.market-item h3 {
    font-family: "Barlow Condensed", sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.015em !important;
}


/* SMALL BLUE LABELS */
.eyebrow,
.service-number,
.strip-title {
    font-family: "Inter", sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.10em !important;
}


/* HERO MAIN TITLE */
.hero h1 {
    font-family: "Barlow Condensed", sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.025em !important;
}


/* HERO SUBTITLE */
.hero-kicker {
    font-family: "Inter", sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
}


/* HERO SERVICES */
.hero-services,
.hero-service-area {
    font-family: "Inter", sans-serif !important;
}


/* NAVBAR — KEEP BEBAS NEUE */
.main-nav .nav-link {
    font-family: "Bebas Neue", sans-serif !important;
}


/* BUTTONS */
.btn,
.form-submit,
.text-link {
    font-family: "Inter", sans-serif !important;
    font-weight: 700 !important;
}


/* FOOTER */
.site-footer {
    font-family: "Inter", sans-serif !important;
}

.site-footer h3 {
    font-family: "Barlow Condensed", sans-serif !important;
    font-weight: 600 !important;
}

/* =========================================================
   BRAYMONT MOBILE SPLASH — FINAL
   Header logo colors
   White -> Blue swipe -> Logo fade -> Hold
   -> Logo fade out -> Blue swipe out
========================================================= */

@media (min-width: 821px) {

    #braymont-splash {
        display: none !important;
    }

}


@media (max-width: 820px) {

    #braymont-splash {
        position: fixed !important;
        inset: 0 !important;
        z-index: 999999 !important;

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

        width: 100% !important;
        height: 100% !important;

        background: #ffffff !important;

        overflow: hidden !important;

        transform: none !important;
        animation: none !important;

        opacity: 1 !important;
        visibility: visible !important;

        isolation: isolate !important;
    }


    /* BLUE PANEL */

    #braymont-splash::before {
        content: "" !important;

        position: absolute !important;
        inset: 0 !important;

        z-index: 1 !important;

        width: 100% !important;
        height: 100% !important;

        background: #1767B9 !important;

        transform:
            translate3d(-100%, 0, 0);

        animation:
            braymontBlueSwipeIn
            0.70s
            cubic-bezier(0.76, 0, 0.24, 1)
            0.04s
            forwards
            !important;

        will-change: transform;

        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }


    /* CONTENT */

    #braymont-splash .splash-content {
        position: relative !important;

        z-index: 2 !important;

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

        width: 100% !important;
        height: 100% !important;

        opacity: 1 !important;
        visibility: visible !important;

        transform: none !important;

        animation: none !important;
        transition: none !important;

        pointer-events: none !important;
    }


    /* HEADER LOGO IN SPLASH */

    #braymont-splash .splash-logo {
        position: relative !important;

        z-index: 2 !important;

        display: block !important;

        width:
            min(
                360px,
                76vw
            )
            !important;

        height: auto !important;

        max-width: 86vw !important;
        max-height: 34vh !important;

        object-fit: contain !important;
        object-position: center !important;

        opacity: 0 !important;
        visibility: hidden !important;

        transform: none !important;
        animation: none !important;

        filter: none !important;
        -webkit-filter: none !important;

        transition:
            opacity 0.42s ease-out
            !important;

        will-change: opacity;

        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }


    /* LOGO FADE IN */

    #braymont-splash.show-logo
    .splash-logo {

        visibility:
            visible !important;

        opacity:
            1 !important;

        filter:
            none !important;

        -webkit-filter:
            none !important;

        transition:
            opacity 0.42s ease-out
            !important;
    }


    /* LOGO FADE OUT */

    #braymont-splash.hide-logo
    .splash-logo {

        visibility:
            visible !important;

        opacity:
            0 !important;

        filter:
            none !important;

        -webkit-filter:
            none !important;

        transition:
            opacity 0.19s ease-out
            !important;
    }


    /* BLUE SWIPE OUT */

    #braymont-splash.splash-exit::before {

        animation:
            braymontBlueSwipeOut
            0.66s
            cubic-bezier(0.76, 0, 0.24, 1)
            forwards
            !important;
    }

}


/* =========================================================
   BLUE SWIPE IN
========================================================= */

@keyframes braymontBlueSwipeIn {

    from {

        transform:
            translate3d(
                -100%,
                0,
                0
            );

    }

    to {

        transform:
            translate3d(
                0,
                0,
                0
            );

    }

}


/* =========================================================
   BLUE SWIPE OUT
========================================================= */

@keyframes braymontBlueSwipeOut {

    from {

        transform:
            translate3d(
                0,
                0,
                0
            );

    }

    to {

        transform:
            translate3d(
                100%,
                0,
                0
            );

    }

}


/* =========================================================
   SAFARI / IPHONE
========================================================= */

@supports (-webkit-touch-callout: none) {

    @media (max-width: 820px) {

        #braymont-splash .splash-logo {

            opacity:
                0 !important;

            visibility:
                hidden !important;

            filter:
                none !important;

            -webkit-filter:
                none !important;
        }


        #braymont-splash.show-logo
        .splash-logo {

            visibility:
                visible !important;

            opacity:
                1 !important;

            filter:
                none !important;

            -webkit-filter:
                none !important;
        }


        #braymont-splash.hide-logo
        .splash-logo {

            visibility:
                visible !important;

            opacity:
                0 !important;

            filter:
                none !important;

            -webkit-filter:
                none !important;
        }

    }

}


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

@media
(prefers-reduced-motion: reduce)
and
(max-width: 820px) {

    #braymont-splash {

        display:
            flex !important;

        transform:
            none !important;

        animation:
            none !important;
    }


    #braymont-splash::before {

        animation:
            braymontBlueSwipeIn
            0.70s
            cubic-bezier(0.76, 0, 0.24, 1)
            0.04s
            forwards
            !important;
    }


    #braymont-splash.splash-exit::before {

        animation:
            braymontBlueSwipeOut
            0.66s
            cubic-bezier(0.76, 0, 0.24, 1)
            forwards
            !important;
    }

}

/* =========================================================
   SEO / ACCESSIBILITY HELPERS
========================================================= */

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* =========================================================
   SERVICE DETAIL PAGES
========================================================= */

.service-page #braymont-splash {
    display: none !important;
}

.service-detail-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    background:
        url("../../images/pic02.jpg")
        center center / cover no-repeat;
    overflow: hidden;
}

.service-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 20, 34, 0.92) 0%,
            rgba(7, 25, 45, 0.82) 48%,
            rgba(7, 25, 45, 0.58) 100%
        );
}

.service-detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0;
    color: #ffffff;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 26px;
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.service-breadcrumb a:hover {
    color: #ffffff;
}

.service-detail-hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(3.4rem, 7vw, 6.6rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.service-detail-lead {
    max-width: 780px;
    margin: 26px 0 0;
    font-family: "Inter", sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.service-detail-hero .hero-actions {
    justify-content: flex-start;
}

.service-detail-section {
    padding: 90px 0;
    background: #ffffff;
}

.service-detail-section-gray {
    background: var(--light-gray);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.service-detail-heading {
    margin: 0;
    color: var(--charcoal);
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(2.4rem, 4.7vw, 4.3rem);
    font-weight: 600;
    line-height: 1.03;
    text-transform: uppercase;
}

.service-detail-grid p {
    color: var(--muted);
    font-family: "Inter", sans-serif;
    line-height: 1.9;
}

.service-detail-image-wrap {
    min-height: 470px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
}

.service-detail-image {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.service-detail-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-detail-card {
    min-height: 250px;
    padding: 30px 26px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-top: 4px solid var(--blue);
}

.service-detail-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    background: var(--blue);
    color: #ffffff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-detail-card h3,
.service-detail-environments h3 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.55rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--charcoal);
}

.service-detail-card p,
.service-detail-environments p {
    margin: 12px 0 0;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    line-height: 1.75;
    font-size: 0.92rem;
}

.service-detail-environments {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--border);
}

.service-detail-environments > div {
    position: relative;
    min-height: 215px;
    padding: 30px 24px;
    background: #ffffff;
}

.service-detail-environments > div:not(:last-child) {
    border-right: 1px solid var(--border);
}

.service-detail-cta {
    padding: 82px 0;
    background:
        linear-gradient(
            135deg,
            #07121f 0%,
            #0a2848 54%,
            #0d4e8f 100%
        );
}

.service-detail-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.service-detail-cta h2 {
    max-width: 800px;
    margin: 0;
    color: #ffffff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
    text-transform: uppercase;
}

.service-detail-cta p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Inter", sans-serif;
    line-height: 1.8;
}

.service-detail-cta .btn {
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .service-detail-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .service-detail-environments > div {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 820px) {
    .service-detail-hero {
        min-height: 560px;
    }

    .service-detail-hero-content {
        padding: 72px 0;
    }

    .service-detail-hero h1 {
        font-size: clamp(3rem, 13vw, 4.9rem);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .service-detail-image-wrap,
    .service-detail-image {
        min-height: 340px;
    }

    .service-detail-cards,
    .service-detail-environments {
        grid-template-columns: 1fr;
    }

    .service-detail-environments > div {
        border-right: 0 !important;
        border-bottom: 1px solid var(--border);
    }

    .service-detail-environments > div:last-child {
        border-bottom: 0;
    }

    .service-detail-cta-inner {
        display: block;
    }

    .service-detail-cta .btn {
        margin-top: 30px;
    }
}

@media (max-width: 560px) {
    .service-detail-section {
        padding: 64px 0;
    }

    .service-detail-hero {
        min-height: 520px;
    }

    .service-detail-hero .hero-actions {
        align-items: stretch;
    }

    .service-detail-hero .btn {
        width: 100%;
    }
}

/* Protective Coatings service hero */
.service-detail-hero-coatings {
    background:
        url("../../images/pic03.jpg")
        center center / cover no-repeat;
}

/* =========================================================
   COMPLETE MULTI-PAGE SITE
========================================================= */

.service-detail-hero-surface-restoration {
    background: url("../../images/pic05.jpg") center center / cover no-repeat;
}

.service-detail-hero-commercial-drywall {
    background: url("../../images/pic04.jpg") center center / cover no-repeat;
}

.service-detail-hero-pressure-washing {
    background: url("../../images/pic08.jpg") center center / cover no-repeat;
}

.standard-detail-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;

    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;

    overflow: hidden;
}

.standard-detail-hero .service-detail-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.standard-detail-hero .service-detail-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 90px 0;
}

.standard-detail-hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(3.4rem, 7vw, 6.6rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.standard-detail-hero .service-detail-lead {
    max-width: 780px;
    margin: 26px 0 0;
    font-family: "Inter", sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 820px) {
    .standard-detail-hero {
        min-height: 560px;
    }

    .standard-detail-hero .service-detail-hero-content {
        padding: 72px 0;
    }

    .standard-detail-hero h1 {
        font-size: clamp(3rem, 13vw, 4.9rem);
    }
}

@media (max-width: 560px) {
    .standard-detail-hero {
        min-height: 520px;
    }
}

.contact-page-section {
    min-height: 650px;
}

.contact-direct-card h2 {
    margin: 0 0 18px;
    color: var(--charcoal);
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.contact-checklist {
    margin: 22px 0 28px;
    padding-left: 20px;
    color: var(--text);
    line-height: 1.9;
}

.contact-checklist li::marker {
    color: var(--blue);
}

/* Keep nine desktop navigation items usable across common widths. */
@media (min-width: 821px) {
    .main-nav-inner {
        width: min(1500px, calc(100% - 24px)) !important;
    }

    .main-nav .nav-link {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        white-space: nowrap;
    }
}

@media (max-width: 1100px) and (min-width: 821px) {
    .main-nav .nav-link {
        font-size: 18px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}


/* =========================================================
   PROJECTS & SAFETY HERO ALIGNMENT FIX
   Match service-page centered content positioning
========================================================= */

.standard-detail-hero .service-detail-hero-content {
    width: min(1180px, calc(100% - 48px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width: 820px) {
    .standard-detail-hero .service-detail-hero-content {
        width: min(100% - 36px, 1180px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* =========================================================
   BRAYMONT INDUSTRIAL — FINAL 9-ITEM DESKTOP NAV
   Definitive override. Keep this at the very end of the file.
========================================================= */

@media (min-width: 821px) {

    .main-nav {
        width: 100% !important;
    }

    .main-nav-inner {
        width: min(1500px, calc(100% - 24px)) !important;
        max-width: 1500px !important;
        min-height: 62px !important;
        margin: 0 auto !important;
        padding: 0 !important;

        display: grid !important;
        grid-template-columns: repeat(9, minmax(0, 1fr)) !important;

        align-items: stretch !important;
        justify-content: stretch !important;
        gap: 0 !important;
    }

    .main-nav .nav-link {
        position: relative !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;

        height: 62px !important;

        margin: 0 !important;
        padding: 0 8px !important;

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

        white-space: nowrap !important;

        font-family: "Bebas Neue", sans-serif !important;
        font-size: 22px !important;
        font-weight: 400 !important;
        letter-spacing: 0.01em !important;

        color: var(--charcoal) !important;
        background: transparent !important;
    }

    .main-nav .nav-link:not(:last-child)::after {
    content: "" !important;

    position: absolute !important;

    right: 0 !important;

    top: 50% !important;

    width: 1px !important;
    height: 22px !important;

    transform: translateY(-50%) !important;

    background: #707070 !important;
    opacity: 1 !important;
}

    .main-nav .nav-link::before {
        content: "" !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 50% !important;
        height: calc(1em + 4px) !important;
        transform: translateY(-50%) !important;
        background: var(--blue) !important;
        opacity: 0 !important;
        z-index: -1 !important;
        transition: opacity 0.18s ease !important;
    }

    .main-nav .nav-link:hover {
        color: #ffffff !important;
        background: transparent !important;
    }

    .main-nav .nav-link:hover::before {
        opacity: 1 !important;
    }

    .main-nav .nav-link.active,
    .main-nav .nav-link.active:focus,
    .main-nav .nav-link.active:active {
        color: var(--charcoal) !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .main-nav .nav-link.active::before {
        opacity: 0 !important;
    }

    .main-nav .nav-link.active:hover {
        color: #ffffff !important;
    }

    .main-nav .nav-link.active:hover::before {
        opacity: 1 !important;
    }
}

@media (max-width: 1180px) and (min-width: 821px) {
    .main-nav .nav-link {
        padding-left: 5px !important;
        padding-right: 5px !important;
        font-size: 18px !important;
    }
}

