/* ============================================================
   IMPERPLAK SOLUTIONS LLC
   Premium Commercial Waterproofing Website
   Main Stylesheet
   ============================================================ */


/* ============================================================
   ROOT
   ============================================================ */

:root {

    --forest: #173b30;
    --forest-deep: #0e2922;
    --forest-soft: #214c3d;

    --gold: #c89a3c;
    --gold-light: #d9b66a;

    --ivory: #f7f4eb;
    --white: #ffffff;
    --paper: #fffdf8;

    --charcoal: #18231f;
    --muted: #66746d;
    --muted-light: #aab8b0;

    --line: #dfe3dc;
    --line-dark: rgba(255,255,255,.12);

    --shadow-sm:
        0 8px 30px rgba(16, 35, 29, .07);

    --shadow-md:
        0 18px 55px rgba(16, 35, 29, .11);

    --shadow-lg:
        0 30px 90px rgba(16, 35, 29, .18);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --container: 1180px;

    --ease:
        cubic-bezier(.22,.61,.36,1);

}


/* ============================================================
   RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    padding: 0;

    background: var(--paper);
    color: var(--charcoal);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 16px;
    line-height: 1.7;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}


/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1,
h2,
h3,
h4 {
    margin-top: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: 500;

    letter-spacing: -.035em;
}

h1 {
    font-size:
        clamp(3.4rem, 7vw, 6.8rem);

    line-height: .94;
}

h2 {
    font-size:
        clamp(2.7rem, 5vw, 4.7rem);

    line-height: 1.02;
}

h3 {
    font-size: 1.65rem;
    line-height: 1.12;
}

h4 {
    font-size: 1.15rem;
    line-height: 1.25;
}

p {
    margin-top: 0;
}

em {
    color: var(--gold);
    font-style: normal;
}

::selection {
    color: var(--white);
    background: var(--forest);
}


/* ============================================================
   GLOBAL CONTAINER
   ============================================================ */

.container {
    width: min(
        var(--container),
        calc(100% - 56px)
    );

    margin-inline: auto;
}


/* ============================================================
   LOADER
   ============================================================ */

.page-loader {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background: var(--forest);

    transition:
        opacity .65s var(--ease),
        visibility .65s var(--ease);
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    display: flex;
    align-items: flex-end;
    gap: 5px;

    height: 36px;

    margin-bottom: 22px;
}

.loader-mark span {
    display: block;

    width: 5px;

    background: var(--gold);

    animation:
        loaderBars 1.1s infinite var(--ease);
}

.loader-mark span:nth-child(1) {
    height: 16px;
}

.loader-mark span:nth-child(2) {
    height: 29px;

    animation-delay: .12s;
}

.loader-mark span:nth-child(3) {
    height: 22px;

    animation-delay: .24s;
}

.loader-text {
    color: #dbe6df;

    font-size: 10px;
    letter-spacing: .25em;
    font-weight: 800;
}

@keyframes loaderBars {

    0%,
    100% {
        transform: scaleY(.65);
        opacity: .6;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }

}


/* ============================================================
   SCROLL PROGRESS
   ============================================================ */

.scroll-progress {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 10000;

    width: 0;
    height: 3px;

    background: var(--gold);

    transition: width .08s linear;
}


/* ============================================================
   UTILITY BAR
   ============================================================ */

.utility-bar {
    background: var(--forest-deep);
    color: #d9e3de;

    font-size: 11px;

    letter-spacing: .04em;
}

.utility-inner {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.utility-label {
    font-size: 10px;
    letter-spacing: .15em;
    font-weight: 800;
}

.utility-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.utility-right a {
    color: #edf4ef;
    text-decoration: none;

    transition: color .25s ease;
}

.utility-right a:hover {
    color: var(--gold-light);
}

.utility-divider {
    width: 1px;
    height: 12px;

    background: rgba(255,255,255,.2);
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background:
        rgba(255,253,248,.93);

    border-bottom:
        1px solid rgba(23,59,48,.08);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        box-shadow .35s ease,
        background .35s ease;
}

.site-header.scrolled {
    box-shadow:
        0 12px 40px rgba(20,36,31,.09);
}

.nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ============================================================
   BRAND
   ============================================================ */

.brand {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: var(--forest);

    text-decoration: none;
}

.brand-symbol {
    position: relative;

    width: 38px;
    height: 34px;

    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.symbol-line {
    display: block;

    width: 8px;

    border-radius: 2px 2px 0 0;

    background: var(--forest);

    transform-origin: bottom;

    transition:
        transform .35s var(--ease),
        background .35s ease;
}

.line-one {
    height: 18px;
}

.line-two {
    height: 29px;
}

.line-three {
    height: 23px;
}

.brand:hover .line-one {
    transform: scaleY(1.15);
}

.brand:hover .line-two {
    transform: scaleY(.85);
}

.brand:hover .line-three {
    transform: scaleY(1.12);
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.brand-text strong {
    font-size: 17px;

    letter-spacing: .09em;

    font-weight: 900;
}

.brand-text span {
    margin-top: 5px;

    color: var(--muted);

    font-size: 8px;

    letter-spacing: .19em;
    font-weight: 800;
}


/* ============================================================
   DESKTOP NAV
   ============================================================ */

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 25px;
}

.desktop-nav > a {
    position: relative;

    color: var(--charcoal);

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        color .25s ease;
}

.desktop-nav > a:not(.nav-cta)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width .3s var(--ease);
}

.desktop-nav > a:not(.nav-cta):hover {
    color: var(--forest);
}

.desktop-nav > a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 12px 17px;

    color: var(--white) !important;

    background: var(--forest);

    border-radius: 999px;

    box-shadow:
        0 8px 22px rgba(23,59,48,.15);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 13px 28px rgba(23,59,48,.22);
}

.arrow {
    font-size: 16px;
}


/* ============================================================
   MOBILE MENU
   ============================================================ */

.mobile-menu-button {
    display: none;

    width: 45px;
    height: 45px;

    border: 0;
    border-radius: 50%;

    background: var(--forest);

    padding: 12px;
}

.mobile-menu-button span {
    display: block;

    height: 2px;

    margin: 4px 0;

    background: var(--white);

    transition:
        transform .3s ease,
        opacity .3s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform:
        translateY(6px)
        rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform:
        translateY(-6px)
        rotate(-45deg);
}

.mobile-navigation {
    display: none;

    padding: 15px 28px 28px;

    background: var(--paper);

    border-top:
        1px solid var(--line);
}

.mobile-navigation a {
    display: block;

    padding: 15px 0;

    border-bottom:
        1px solid var(--line);

    text-decoration: none;

    font-weight: 700;
}


/* ============================================================
   EYEBROWS
   ============================================================ */

.eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 19px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .21em;
}

.eyebrow-line {
    width: 34px;
    height: 1px;

    background: var(--gold);
}

.eyebrow-light {
    color: var(--gold-light);
}


/* ============================================================
   BUTTONS
   ============================================================ */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    min-height: 52px;

    padding: 0 20px;

    border-radius: 999px;

    text-decoration: none;

    border: 1px solid transparent;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform .3s var(--ease),
        box-shadow .3s ease,
        background .3s ease,
        color .3s ease;
}

.button-primary {
    background: var(--gold);
    color: var(--forest-deep);

    box-shadow:
        0 12px 30px rgba(200,154,60,.2);
}

.button-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(200,154,60,.3);

    background: var(--gold-light);
}

.button-secondary {
    color: var(--charcoal);

    background: transparent;

    border-color:
        rgba(23,59,48,.2);
}

.button-secondary:hover {
    transform: translateY(-3px);

    background: var(--forest);
    color: var(--white);

    border-color: var(--forest);
}

.button-arrow {
    font-size: 17px;
}


/* ============================================================
   HERO
   ============================================================ */

.hero-section {
    position: relative;

    min-height: 790px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(71,120,98,.25),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #102c24 0%,
            #173b30 48%,
            #214b3c 100%
        );
}

.hero-background-grid {
    position: absolute;
    inset: 0;

    opacity: .17;

    background-image:
        linear-gradient(
            rgba(255,255,255,.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.07) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

.hero-orb {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.08);

    pointer-events: none;
}

.hero-orb-one {
    width: 600px;
    height: 600px;

    right: -280px;
    top: -270px;

    box-shadow:
        0 0 0 80px rgba(255,255,255,.025),
        0 0 0 160px rgba(255,255,255,.015);

    animation:
        orbitalFloat 10s ease-in-out infinite;
}

.hero-orb-two {
    width: 280px;
    height: 280px;

    left: -160px;
    bottom: 80px;

    opacity: .45;

    animation:
        orbitalFloat 13s ease-in-out infinite reverse;
}

@keyframes orbitalFloat {

    0%,
    100% {
        transform: translate3d(0,0,0);
    }

    50% {
        transform: translate3d(0,18px,0);
    }

}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(420px, .92fr);

    gap: 75px;

    align-items: center;

    padding-top: 85px;
    padding-bottom: 135px;
}

.hero-content h1 {
    max-width: 790px;

    margin-bottom: 30px;
}

.hero-description {
    max-width: 660px;

    color: #d4e2da;

    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 35px;
}

.hero-actions .button-secondary {
    color: var(--white);
    border-color: rgba(255,255,255,.22);
}

.hero-actions .button-secondary:hover {
    color: var(--forest);
    background: var(--white);
}

.hero-meta {
    display: flex;

    gap: 35px;

    margin-top: 58px;
}

.hero-meta-item {
    display: flex;
    gap: 12px;
}

.hero-meta-item strong {
    color: var(--gold);

    font-size: 11px;
    letter-spacing: .1em;
}

.hero-meta-item span {
    color: #b6c7be;

    font-size: 10px;
    line-height: 1.45;

    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
}


/* ============================================================
   HERO ARCHITECTURAL VISUAL
   ============================================================ */

.visual-frame {
    position: relative;

    min-height: 535px;

    padding: 20px;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: var(--radius-lg);

    background:
        rgba(255,255,255,.055);

    box-shadow:
        0 35px 100px rgba(0,0,0,.18);

    backdrop-filter: blur(8px);
}

.visual-topline,
.visual-bottomline {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #a9bbb2;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .18em;
}

.visual-topline {
    padding-bottom: 16px;

    border-bottom:
        1px solid rgba(255,255,255,.1);
}

.visual-bottomline {
    position: absolute;

    right: 20px;
    bottom: 20px;
    left: 20px;

    padding-top: 15px;

    border-top:
        1px solid rgba(255,255,255,.1);
}

.visual-progress {
    flex: 1;

    height: 1px;

    margin: 0 15px;

    background: rgba(255,255,255,.13);
}

.visual-progress span {
    display: block;

    width: 42%;
    height: 100%;

    background: var(--gold);

    animation:
        visualProgress 4s ease-in-out infinite;
}

@keyframes visualProgress {

    0%,
    100% {
        width: 28%;
    }

    50% {
        width: 74%;
    }

}

.building-illustration {
    position: relative;

    min-height: 420px;

    overflow: hidden;

    margin-top: 8px;
}

.building-sky {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            160deg,
            rgba(255,255,255,.05),
            transparent 55%
        );
}

.building-main {
    position: absolute;

    left: 18%;
    right: 12%;
    bottom: 40px;

    height: 275px;

    padding: 15px;

    border:
        1px solid rgba(255,255,255,.17);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.11),
            rgba(255,255,255,.025)
        );

    box-shadow:
        0 20px 50px rgba(0,0,0,.2);

    transform:
        perspective(700px)
        rotateY(-5deg);

    animation:
        buildingFloat 7s ease-in-out infinite;
}

@keyframes buildingFloat {

    0%,
    100% {
        transform:
            perspective(700px)
            rotateY(-5deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(700px)
            rotateY(-5deg)
            translateY(-7px);
    }

}

.building-roof {
    height: 13px;

    margin: -15px -15px 15px;

    background: var(--gold);

    box-shadow:
        0 0 30px rgba(200,154,60,.2);
}

.building-floor {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 13px;

    padding: 10px 9px;

    margin-bottom: 7px;

    border:
        1px solid rgba(255,255,255,.07);
}

.building-floor span {
    height: 43px;

    background:
        linear-gradient(
            180deg,
            rgba(199,223,214,.17),
            rgba(255,255,255,.04)
        );

    border:
        1px solid rgba(255,255,255,.08);
}

.water-line {
    position: absolute;

    width: 145px;
    height: 1px;

    background: var(--gold);

    opacity: .65;

    animation:
        waterDrift 4s ease-in-out infinite;
}

.water-line-one {
    top: 100px;
    right: 0;
}

.water-line-two {
    top: 125px;
    right: 35px;

    width: 95px;

    animation-delay: .7s;
}

@keyframes waterDrift {

    0%,
    100% {
        transform: translateX(0);
        opacity: .3;
    }

    50% {
        transform: translateX(-18px);
        opacity: .9;
    }

}

.visual-label {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 7px;

    color: #dce8e2;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .15em;
}

.label-top {
    top: 112px;
    left: 8px;
}

.label-bottom {
    right: 0;
    bottom: 95px;
}

.label-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 5px rgba(200,154,60,.12);

    animation:
        dotPulse 2s infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(200,154,60,.08);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(200,154,60,.04);
    }

}


/* ============================================================
   HERO STRIP
   ============================================================ */

.hero-bottom-strip {
    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;

    z-index: 3;

    border-top:
        1px solid rgba(255,255,255,.1);

    background:
        rgba(10,33,27,.38);

    backdrop-filter: blur(8px);
}

.strip-container {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);
}

.strip-container > div {
    padding: 17px 15px;

    border-right:
        1px solid rgba(255,255,255,.1);

    color: #a8bbb1;

    text-align: center;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .16em;
}

.strip-container > div:last-child {
    border-right: 0;
}


/* ============================================================
   SECTIONS
   ============================================================ */

.section-light {
    background: var(--paper);
}

.section-dark {
    background:
        linear-gradient(
            135deg,
            var(--forest-deep),
            var(--forest)
        );

    color: var(--white);
}

.intro-section {
    padding: 120px 0;
}

.services-section {
    padding: 125px 0;
}

.technical-section {
    padding: 120px 0;

    background:
        var(--ivory);
}

.industries-section {
    padding: 120px 0;
}

.process-section {
    padding: 125px 0;
}

.about-section {
    padding: 125px 0;
}

.location-section {
    padding: 120px 0;

    background:
        var(--forest-deep);

    color: var(--white);
}

.faq-section {
    padding: 120px 0;
}

.contact-section {
    padding: 125px 0;
}

.legal-section {
    padding: 110px 0;
}

.final-cta {
    position: relative;

    overflow: hidden;

    padding: 120px 0;

    background:
        linear-gradient(
            130deg,
            #102c24,
            #173b30 55%,
            #214c3d
        );

    color: var(--white);
}


/* ============================================================
   SECTION LABEL
   ============================================================ */

.section-label {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .2em;
}

.section-label span:first-child {
    color: var(--gold);
}

.section-label-light {
    color: #91a69c;
}


/* ============================================================
   INTRO
   ============================================================ */

.intro-grid {
    display: grid;

    grid-template-columns:
        .55fr
        1.45fr;

    gap: 70px;
}

.intro-main {
    max-width: 800px;
}

.intro-main h2 {
    max-width: 800px;

    margin-bottom: 35px;
}

.intro-main h2 span {
    color: var(--forest);
}

.large-copy {
    font-size: 21px;
    line-height: 1.65;

    color: var(--forest);
}

.intro-main p:not(.large-copy) {
    max-width: 760px;

    color: var(--muted);
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 18px;

    color: var(--forest);

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
}

.text-link span {
    color: var(--gold);

    transition:
        transform .25s ease;
}

.text-link:hover span {
    transform: translate(4px,-4px);
}


/* ============================================================
   STAT ROW
   ============================================================ */

.stat-row {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;

    margin-top: 75px;
}

.stat-card {
    display: grid;

    grid-template-columns:
        auto 1fr;

    gap: 22px;

    padding: 27px;

    border:
        1px solid var(--line);

    border-radius: var(--radius-md);

    background: rgba(255,255,255,.5);

    transition:
        transform .3s var(--ease),
        box-shadow .3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}

.stat-number {
    color: var(--gold);

    font-family: Georgia, serif;

    font-size: 25px;
}

.stat-card strong {
    display: block;

    margin-bottom: 7px;

    font-size: 14px;
}

.stat-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}


/* ============================================================
   SECTION HEADING
   ============================================================ */

.section-heading {
    display: grid;

    grid-template-columns:
        .45fr
        1fr
        .65fr;

    gap: 50px;

    align-items: end;

    margin-bottom: 65px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading > p {
    margin: 0;

    color: #a9bcb2;

    font-size: 15px;
}


/* ============================================================
   SERVICES GRID
   ============================================================ */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 1px;

    background: rgba(255,255,255,.12);

    border:
        1px solid rgba(255,255,255,.12);
}

.service-card {
    position: relative;

    min-height: 455px;

    padding: 34px 32px;

    background:
        rgba(255,255,255,.025);

    overflow: hidden;

    transition:
        background .4s ease,
        transform .4s var(--ease);
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition:
        width .5s var(--ease);
}

.service-card:hover {
    background:
        rgba(255,255,255,.065);
}

.service-card:hover::before {
    width: 100%;
}

.service-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: rgba(255,255,255,.18);

    font-family: Georgia, serif;

    font-size: 12px;
}

.service-icon {
    width: 57px;
    height: 57px;

    display: grid;
    place-items: center;

    margin-bottom: 32px;

    border:
        1px solid rgba(200,154,60,.35);

    border-radius: 16px;

    color: var(--gold);

    transition:
        transform .4s var(--ease),
        background .4s ease;
}

.service-card:hover .service-icon {
    transform:
        translateY(-4px)
        rotate(-3deg);

    background:
        rgba(200,154,60,.08);
}

.service-icon svg {
    width: 29px;
    height: 29px;

    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    max-width: 290px;

    margin-bottom: 17px;
}

.service-card p {
    color: #aabdb3;

    font-size: 13px;
}

.service-card ul {
    margin: 25px 0 25px;
    padding: 0;

    list-style: none;
}

.service-card li {
    position: relative;

    padding-left: 17px;

    margin-bottom: 7px;

    color: #d3ded8;

    font-size: 11px;
}

.service-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 9px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--gold);
}

.service-link {
    position: absolute;

    left: 32px;
    bottom: 31px;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #fff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;
}

.service-link span {
    color: var(--gold);

    transition:
        transform .25s ease;
}

.service-link:hover span {
    transform: translate(4px,-4px);
}


/* ============================================================
   TECHNICAL SECTION
   ============================================================ */

.technical-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 100px;

    align-items: center;
}

.technical-box {
    position: relative;

    min-height: 500px;

    padding: 20px;

    border:
        1px solid var(--line);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            #fffefa,
            #edf0e9
        );

    box-shadow:
        var(--shadow-md);

    overflow: hidden;
}

.technical-header,
.technical-footer {
    display: flex;
    justify-content: space-between;

    color: var(--muted);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .16em;
}

.technical-header {
    padding-bottom: 16px;

    border-bottom:
        1px solid var(--line);
}

.technical-footer {
    position: absolute;

    right: 20px;
    bottom: 20px;
    left: 20px;

    padding-top: 15px;

    border-top:
        1px solid var(--line);
}

.technical-diagram {
    position: absolute;

    top: 95px;
    right: 55px;
    bottom: 80px;
    left: 55px;
}

.diagram-surface {
    position: absolute;

    right: 0;
    bottom: 30px;
    left: 0;

    height: 95px;

    border-radius: 8px;

    background:
        repeating-linear-gradient(
            -45deg,
            #bfc7c0 0,
            #bfc7c0 2px,
            #aeb9b1 2px,
            #aeb9b1 5px
        );

    box-shadow:
        0 18px 30px rgba(20,36,31,.1);
}

.diagram-layer {
    position: absolute;

    left: 7%;

    width: 86%;

    height: 12px;

    border-radius: 5px;

    transform:
        skewX(-24deg);
}

.layer-one {
    bottom: 123px;

    background: var(--gold);

    box-shadow:
        0 0 25px rgba(200,154,60,.25);
}

.layer-two {
    bottom: 141px;

    background: #71897f;
}

.layer-three {
    bottom: 158px;

    background: #dce2dc;
}

.diagram-callout {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--forest);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .1em;
}

.diagram-callout span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);
}

.callout-one {
    right: -18px;
    bottom: 127px;
}

.callout-two {
    left: -18px;
    bottom: 160px;
}

.callout-three {
    left: -18px;
    bottom: 43px;
}

.technical-content h2 {
    margin-bottom: 28px;
}

.technical-content > p {
    max-width: 610px;

    color: var(--muted);

    font-size: 16px;
}

.technical-list {
    margin-top: 40px;

    border-top:
        1px solid var(--line);
}

.technical-list > div {
    display: grid;

    grid-template-columns:
        45px
        1fr;

    gap: 12px;

    padding: 21px 0;

    border-bottom:
        1px solid var(--line);
}

.technical-list span {
    color: var(--gold);

    font-family: Georgia, serif;

    font-size: 14px;
}

.technical-list strong {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;
}

.technical-list p {
    grid-column: 2;

    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* ============================================================
   INDUSTRIES
   ============================================================ */

.dark-heading {
    color: var(--charcoal);
}

.dark-heading > p {
    color: var(--muted);
}

.industry-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}

.industry-card {
    position: relative;

    min-height: 310px;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: var(--radius-md);

    background: var(--paper);

    transition:
        transform .35s var(--ease),
        box-shadow .35s ease;
}

.industry-card::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -70px;
    bottom: -70px;

    border:
        1px solid rgba(23,59,48,.08);

    border-radius: 50%;

    transition:
        transform .6s var(--ease);
}

.industry-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}

.industry-card:hover::after {
    transform: scale(1.4);
}

.industry-card.large {
    grid-column: span 2;

    min-height: 310px;

    background:
        linear-gradient(
            140deg,
            #edf1eb,
            #fffdf8
        );
}

.industry-number {
    position: absolute;

    top: 23px;
    right: 25px;

    color: var(--gold);

    font-family: Georgia, serif;

    font-size: 12px;
}

.industry-content {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;
}

.industry-kicker {
    display: block;

    margin-bottom: 11px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .17em;
}

.industry-content h3 {
    margin-bottom: 12px;
}

.industry-content p {
    max-width: 540px;

    margin-bottom: 18px;

    color: var(--muted);

    font-size: 12px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.industry-tags span {
    padding: 5px 9px;

    border:
        1px solid var(--line);

    border-radius: 999px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 800;
}


/* ============================================================
   PROCESS
   ============================================================ */

.process-intro {
    display: grid;

    grid-template-columns:
        .55fr
        1fr;

    gap: 80px;

    margin-bottom: 70px;
}

.process-intro h2 {
    max-width: 700px;
}

.process-intro p {
    max-width: 630px;

    color: #a9bbb2;
}

.process-timeline {
    position: relative;

    border-top:
        1px solid var(--line-dark);
}

.process-item {
    position: relative;

    display: grid;

    grid-template-columns:
        125px
        1fr;

    min-height: 170px;

    padding: 30px 0;

    border-bottom:
        1px solid var(--line-dark);
}

.process-marker {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.process-marker span {
    display: grid;
    place-items: center;

    width: 57px;
    height: 57px;

    border:
        1px solid rgba(200,154,60,.45);

    border-radius: 50%;

    color: var(--gold);

    font-family: Georgia, serif;

    font-size: 14px;

    transition:
        background .35s ease,
        transform .35s ease;
}

.process-item:hover .process-marker span {
    background: rgba(200,154,60,.09);

    transform: scale(1.08);
}

.process-body {
    padding-left: 30px;

    border-left:
        1px solid rgba(255,255,255,.1);
}

.process-label {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .18em;
}

.process-body h3 {
    margin-bottom: 9px;
}

.process-body p {
    max-width: 670px;

    margin: 0;

    color: #9fb2a8;

    font-size: 13px;
}

.process-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 45px;

    padding: 22px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: var(--radius-md);

    background:
        rgba(255,255,255,.035);
}

.process-bottom > div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.process-bottom span {
    color: var(--gold);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .18em;
}

.process-bottom strong {
    color: #d9e3de;

    font-size: 12px;
}


/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 110px;

    align-items: center;
}

.about-visual {
    position: relative;

    min-height: 560px;
}

.about-card {
    position: absolute;

    top: 25px;
    left: 30px;

    width: min(420px, 90%);
    height: 500px;

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            #1b4638,
            #102d25
        );

    color: var(--white);

    box-shadow:
        var(--shadow-lg);

    overflow: hidden;
}

.about-card::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    top: -170px;
    right: -140px;

    border:
        1px solid rgba(255,255,255,.11);

    border-radius: 50%;
}

.about-card::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    bottom: -150px;
    left: -120px;

    border:
        1px solid rgba(200,154,60,.25);

    border-radius: 50%;
}

.about-card-top,
.about-card-bottom {
    display: flex;
    justify-content: space-between;

    position: relative;
    z-index: 1;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .18em;

    color: #a9bbb2;
}

.about-card-top span:first-child {
    color: var(--white);
}

.about-monogram {
    position: relative;
    z-index: 1;

    align-self: center;

    display: grid;
    place-items: center;

    width: 190px;
    height: 190px;

    border:
        1px solid rgba(200,154,60,.4);

    border-radius: 50%;

    color: var(--gold);

    font-family: Georgia, serif;

    font-size: 130px;
    line-height: 1;

    animation:
        monogramFloat 5s ease-in-out infinite;
}

@keyframes monogramFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}

.about-floating {
    position: absolute;

    right: 0;
    bottom: 20px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 15px 19px;

    border:
        1px solid var(--line);

    border-radius: 16px;

    background:
        rgba(255,253,248,.95);

    box-shadow:
        var(--shadow-md);

    z-index: 2;
}

.floating-number {
    color: var(--gold);

    font-family: Georgia, serif;

    font-size: 27px;
}

.about-floating strong,
.about-floating small {
    display: block;
}

.about-floating strong {
    font-size: 13px;
}

.about-floating small {
    color: var(--muted);

    font-size: 10px;
}

.about-content h2 {
    margin-bottom: 30px;
}

.about-content > p {
    color: var(--muted);
}

.company-facts {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;

    margin-top: 40px;
}

.company-facts > div {
    padding-top: 17px;

    border-top:
        1px solid var(--line);
}

.company-facts span {
    display: block;

    margin-bottom: 7px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .16em;
}

.company-facts strong {
    font-size: 12px;
}


/* ============================================================
   LOCATION
   ============================================================ */

.location-grid {
    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 90px;

    align-items: center;
}

.location-content h2 {
    margin-bottom: 27px;
}

.location-content > p {
    max-width: 590px;

    color: #a8bbb1;
}

.address-block {
    margin-top: 35px;

    padding: 22px 0;

    border-top:
        1px solid var(--line-dark);

    border-bottom:
        1px solid var(--line-dark);
}

.address-label {
    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .17em;
}

.address-block strong {
    color: #e3ece7;

    font-size: 14px;
    font-weight: 600;
}

.location-actions {
    margin-top: 27px;
}

.location-map {
    position: relative;

    min-height: 510px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: var(--radius-lg);

    overflow: hidden;

    background:
        #18382f;

    box-shadow:
        var(--shadow-lg);
}

.map-grid {
    position: absolute;
    inset: 0;

    opacity: .3;

    background-image:
        linear-gradient(
            rgba(255,255,255,.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.07) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    transform:
        rotate(-7deg)
        scale(1.3);
}

.map-road {
    position: absolute;

    height: 12px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.07);

    transform: rotate(-32deg);
}

.road-one {
    width: 720px;

    left: -120px;
    top: 150px;
}

.road-two {
    width: 600px;

    right: -100px;
    top: 290px;

    transform:
        rotate(28deg);
}

.road-three {
    width: 580px;

    left: -90px;
    bottom: 100px;

    transform:
        rotate(14deg);
}

.map-pin {
    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%,-50%);
}

.pin-icon {
    position: relative;

    display: grid;
    place-items: center;

    width: 72px;
    height: 72px;

    border:
        1px solid rgba(200,154,60,.6);

    border-radius: 50%;

    background:
        rgba(16,44,36,.92);

    box-shadow:
        0 15px 40px rgba(0,0,0,.3);

    z-index: 2;
}

.pin-icon span {
    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: var(--gold);
}

.pin-pulse {
    position: absolute;

    width: 130px;
    height: 130px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    border:
        1px solid rgba(200,154,60,.28);

    border-radius: 50%;

    animation:
        mapPulse 2.8s ease-out infinite;
}

@keyframes mapPulse {

    0% {
        transform:
            translate(-50%,-50%)
            scale(.7);

        opacity: .8;
    }

    100% {
        transform:
            translate(-50%,-50%)
            scale(1.3);

        opacity: 0;
    }

}

.pin-label {
    position: absolute;

    left: 80px;
    top: 10px;

    width: 145px;

    padding: 12px 15px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 10px;

    background:
        rgba(10,31,25,.86);

    backdrop-filter: blur(8px);
}

.pin-label strong,
.pin-label small {
    display: block;
}

.pin-label strong {
    color: var(--white);

    font-size: 10px;

    letter-spacing: .12em;
}

.pin-label small {
    margin-top: 4px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .15em;
}

.map-corner {
    position: absolute;

    color: #7f998d;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .12em;
}

.top-left {
    top: 22px;
    left: 22px;
}

.bottom-right {
    right: 22px;
    bottom: 22px;
}


/* ============================================================
   FAQ
   ============================================================ */

.faq-grid {
    display: grid;

    grid-template-columns:
        .75fr
        1.25fr;

    gap: 100px;
}

.faq-intro h2 {
    margin-top: 20px;
}

.faq-intro > p {
    color: var(--muted);
}

.faq-list {
    border-top:
        1px solid var(--line);
}

.faq-list details {
    border-bottom:
        1px solid var(--line);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 24px 0;

    list-style: none;

    cursor: pointer;

    font-size: 15px;
    font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    display: grid;
    place-items: center;

    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    border:
        1px solid var(--line);

    border-radius: 50%;

    color: var(--gold);

    transition:
        transform .3s ease,
        background .3s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);

    background: var(--forest);

    color: var(--white);
}

.faq-answer {
    padding:
        0 55px 25px 0;
}

.faq-answer p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* ============================================================
   CONTACT
   ============================================================ */

.contact-header {
    max-width: 850px;

    margin-bottom: 65px;
}

.contact-header h2 {
    margin-bottom: 25px;
}

.contact-header p {
    max-width: 650px;

    color: #a9bbb2;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        .65fr
        1.35fr;

    gap: 80px;

    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;

    border-top:
        1px solid var(--line-dark);
}

.contact-detail {
    padding: 22px 0;

    border-bottom:
        1px solid var(--line-dark);
}

.contact-detail span {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .18em;
}

.contact-detail a,
.contact-detail strong {
    color: #edf4ef;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--gold-light);
}

.contact-note {
    display: flex;

    gap: 13px;

    margin-top: 28px;

    padding: 17px;

    border:
        1px solid var(--line-dark);

    border-radius: 14px;

    background:
        rgba(255,255,255,.025);
}

.note-mark {
    flex: 0 0 7px;

    width: 7px;
    height: 7px;

    margin-top: 7px;

    border-radius: 50%;

    background: var(--gold);
}

.contact-note p {
    margin: 0;

    color: #99ada3;

    font-size: 11px;
}

.contact-form-wrapper {
    position: relative;

    padding: 37px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: var(--radius-lg);

    background:
        rgba(255,255,255,.045);

    box-shadow:
        var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 19px;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 15px;
}

.form-field {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-field label {
    color: #c7d5ce;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 11px;

    background:
        rgba(255,255,255,.045);

    color: var(--white);

    outline: none;

    transition:
        border .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.form-field input,
.form-field select {
    height: 50px;

    padding: 0 15px;
}

.form-field textarea {
    min-height: 145px;

    padding: 14px 15px;

    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #73877d;
}

.form-field select {
    color: #cbd8d2;
}

.form-field select option {
    color: var(--charcoal);
    background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color:
        rgba(200,154,60,.7);

    background:
        rgba(255,255,255,.065);

    box-shadow:
        0 0 0 4px rgba(200,154,60,.06);
}

.form-consent {
    margin-top: 1px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: #93a89d;

    font-size: 10px;

    cursor: pointer;
}

.checkbox-label input {
    margin-top: 3px;
    accent-color: var(--gold);
}

.form-submit {
    border: 0;

    margin-top: 5px;

    width: fit-content;
}

.form-disclaimer {
    margin: 0;

    color: #71867b;

    font-size: 9px;
    line-height: 1.55;
}

.form-success {
    display: none;

    text-align: center;

    padding: 50px 20px;
}

.form-success.visible {
    display: block;
}

.success-icon {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--forest);

    font-size: 26px;
    font-weight: 900;
}

.form-success h3 {
    color: var(--white);
}

.form-success p {
    color: #a9bbb2;
}


/* ============================================================
   LEGAL
   ============================================================ */

.legal-heading {
    display: grid;

    grid-template-columns:
        .55fr
        1fr;

    gap: 70px;

    margin-bottom: 65px;
}

.legal-heading h2 {
    margin-bottom: 0;
}

.legal-document {
    margin-bottom: 25px;

    padding: 38px 42px;

    border:
        1px solid var(--line);

    border-radius: var(--radius-md);

    background: var(--white);

    box-shadow:
        0 8px 30px rgba(20,36,31,.035);
}

.legal-document-header {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;

    padding-bottom: 15px;

    border-bottom:
        1px solid var(--line);
}

.legal-document-header span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .17em;
}

.legal-document-header small {
    color: var(--muted);

    font-size: 9px;
}

.legal-document h3 {
    margin-bottom: 18px;
}

.legal-document h4 {
    margin-top: 29px;
    margin-bottom: 9px;

    color: var(--forest);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif;

    font-size: 13px;

    letter-spacing: 0;

    font-weight: 800;
}

.legal-document p {
    color: var(--muted);

    font-size: 12px;
}

.legal-document a {
    color: var(--forest);

    font-weight: 700;
}


/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
    text-align: center;
}

.final-cta-pattern {
    position: absolute;
    inset: 0;

    opacity: .2;

    background-image:
        linear-gradient(
            30deg,
            rgba(255,255,255,.05) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(255,255,255,.05) 87.5%
        );

    background-size: 80px 80px;
}

.final-cta-inner {
    position: relative;
    z-index: 1;

    max-width: 850px;

    margin: auto;
}

.final-cta-inner h2 {
    margin-bottom: 25px;
}

.final-cta-inner p {
    max-width: 650px;

    margin: 0 auto 32px;

    color: #b2c3ba;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    padding: 70px 0 25px;

    background:
        #0b211b;

    color: #c6d4cd;
}

.footer-top {
    display: grid;

    grid-template-columns:
        1.4fr
        .7fr
        .9fr
        1fr;

    gap: 55px;

    padding-bottom: 55px;

    border-bottom:
        1px solid rgba(255,255,255,.09);
}

.footer-brand {
    max-width: 290px;
}

.footer-brand-link {
    color: var(--white);
}

.footer-brand-link .brand-text span {
    color: #82968b;
}

.footer-brand-link .symbol-line {
    background: var(--gold);
}

.footer-brand p {
    margin-top: 22px;

    color: #7f958a;

    font-size: 12px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 9px;
}

.footer-heading {
    margin-bottom: 10px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .18em;
}

.footer-column a,
.footer-column span:not(.footer-heading) {
    color: #9cafa3;
    font-size: 11px;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-contact a {
    color: #d5e0da;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 22px;

    color: #687f74;

    font-size: 9px;
}

.footer-legal-links {
    display: flex;

    gap: 17px;
}

.footer-legal-links a {
    color: #789087;

    text-decoration: none;

    transition: color .25s ease;
}

.footer-legal-links a:hover {
    color: var(--gold);
}


/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
    position: fixed;

    left: 22px;
    right: 22px;
    bottom: 22px;

    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    max-width: 980px;

    margin: auto;

    padding: 17px 19px;

    border:
        1px solid rgba(23,59,48,.12);

    border-radius: 18px;

    background:
        rgba(255,253,248,.96);

    box-shadow:
        0 25px 80px rgba(0,0,0,.18);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        opacity .4s ease,
        transform .4s ease;
}

.cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;

    transform:
        translateY(25px);
}

.cookie-content {
    display: flex;
    align-items: flex-start;

    gap: 13px;
}

.cookie-icon {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--forest);

    color: var(--gold);

    font-size: 9px;
    font-weight: 900;
}

.cookie-content strong {
    display: block;

    margin-bottom: 2px;

    font-size: 12px;
}

.cookie-content p {
    max-width: 650px;

    margin: 0;

    color: var(--muted);

    font-size: 10px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;

    gap: 13px;
}

.cookie-policy-link {
    color: var(--forest);

    font-size: 10px;
    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;
}

.cookie-button {
    min-width: 90px;
    height: 40px;

    border: 0;
    border-radius: 999px;

    background: var(--forest);

    color: var(--white);

    font-size: 10px;
    font-weight: 800;

    transition:
        transform .25s ease,
        background .25s ease;
}

.cookie-button:hover {
    transform: translateY(-2px);

    background: var(--forest-soft);
}


/* ============================================================
   BACK TO TOP
   ============================================================ */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 4000;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    background: var(--gold);

    color: var(--forest);

    font-size: 18px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(0,0,0,.17);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}

.back-to-top:hover {
    transform:
        translateY(-3px);
}


/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.reveal {
    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity .85s var(--ease),
        transform .85s var(--ease);
}

.reveal.show {
    opacity: 1;

    transform:
        translateY(0);
}

.reveal-delay-one {
    transition-delay: .12s;
}

.reveal-delay-two {
    transition-delay: .22s;
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 15px;
    }

    .desktop-nav > a {
        font-size: 12px;
    }

    .hero-container {
        grid-template-columns:
            1fr
            .8fr;

        gap: 40px;
    }

    .service-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .industry-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .industry-card.large {
        grid-column: span 2;
    }

    .footer-top {
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* ============================================================
   MOBILE / TABLET
   ============================================================ */

@media (max-width: 820px) {

    .container {
        width:
            min(
                var(--container),
                calc(100% - 34px)
            );
    }

    .utility-inner {
        min-height: 45px;

        justify-content: center;
    }

    .utility-left {
        display: none;
    }

    .utility-right {
        font-size: 10px;
    }

    .utility-right a:last-child {
        display: none;
    }

    .nav-container {
        min-height: 72px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-navigation.open {
        display: block;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;

        padding-top: 75px;
        padding-bottom: 130px;
    }

    .hero-content h1 {
        max-width: 650px;
    }

    .hero-visual {
        max-width: 600px;

        width: 100%;

        margin: auto;
    }

    .section-heading {
        grid-template-columns:
            1fr;

        gap: 25px;
    }

    .intro-grid {
        grid-template-columns:
            1fr;

        gap: 35px;
    }

    .stat-row {
        grid-template-columns:
            1fr;
    }

    .technical-grid {
        grid-template-columns:
            1fr;

        gap: 55px;
    }

    .about-grid {
        grid-template-columns:
            1fr;

        gap: 70px;
    }

    .about-visual {
        max-width: 560px;

        width: 100%;

        margin: auto;
    }

    .location-grid {
        grid-template-columns:
            1fr;

        gap: 55px;
    }

    .faq-grid {
        grid-template-columns:
            1fr;

        gap: 55px;
    }

    .process-intro {
        grid-template-columns:
            1fr;

        gap: 30px;
    }

    .contact-grid {
        grid-template-columns:
            1fr;

        gap: 55px;
    }

    .legal-heading {
        grid-template-columns:
            1fr;

        gap: 25px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 600px) {

    h1 {
        font-size: 3.3rem;
    }

    h2 {
        font-size: 2.7rem;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-meta {
        gap: 17px;
    }

    .hero-meta-item {
        gap: 7px;
    }

    .hero-meta-item span {
        font-size: 8px;
    }

    .visual-frame {
        min-height: 450px;

        padding: 15px;
    }

    .building-main {
        left: 12%;
        right: 7%;
    }

    .strip-container {
        grid-template-columns:
            repeat(2,1fr);
    }

    .strip-container > div {
        border-bottom:
            1px solid rgba(255,255,255,.1);
    }

    .intro-section,
    .services-section,
    .technical-section,
    .industries-section,
    .process-section,
    .about-section,
    .location-section,
    .faq-section,
    .contact-section,
    .legal-section,
    .final-cta {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .service-grid {
        grid-template-columns:
            1fr;
    }

    .service-card {
        min-height: 425px;
    }

    .industry-grid {
        grid-template-columns:
            1fr;
    }

    .industry-card.large {
        grid-column: span 1;
    }

    .industry-card {
        min-height: 290px;
    }

    .process-item {
        grid-template-columns:
            72px
            1fr;
    }

    .process-body {
        padding-left: 18px;
    }

    .process-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .company-facts {
        grid-template-columns:
            1fr;
    }

    .about-card {
        left: 0;

        width: 88%;
    }

    .about-floating {
        right: 0;
    }

    .location-map {
        min-height: 390px;
    }

    .contact-form-wrapper {
        padding: 23px 18px;
    }

    .form-row {
        grid-template-columns:
            1fr;
    }

    .legal-document {
        padding: 27px 21px;
    }

    .legal-document-header {
        flex-direction: column;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;

        display: block;

        padding: 16px;
    }

    .cookie-actions {
        margin-top: 13px;
    }

    .cookie-policy-link {
        flex: 1;
    }

    .cookie-button {
        min-width: 90px;
    }

    .footer-top {
        grid-template-columns:
            1fr;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-legal-links {
        flex-wrap: wrap;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
    }

}


/* ============================================================
   VERY SMALL
   ============================================================ */

@media (max-width: 390px) {

    h1 {
        font-size: 2.9rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    .hero-meta {
        flex-direction: column;
    }

    .hero-meta-item {
        align-items: center;
    }

}