/* =========================================================
   GOLDEN KEY
   SITE & BUILDING MANAGEMENT
========================================================= */

:root {

    --gold: #d5aa3c;
    --gold-dark: #b88718;
    --gold-light: #f4e7bd;

    --black: #151515;
    --black-soft: #20201f;

    --white: #ffffff;

    --cream: #f6f4ee;
    --cream-dark: #ebe7dc;

    --text: #66645f;
    --border: #dfdcd3;

    --container: 1320px;
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    color: var(--black);

    background: var(--white);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;
}

img {

    max-width: 100%;

    height: auto;
}

a {

    text-decoration: none;
}

.gk-main-container {

    max-width: var(--container);
}

.gk-section {

    padding: 125px 0;
}


/* =========================================================
   HEADER
========================================================= */

.gk-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 94px;

    z-index: 1030;

    background:
        rgba(255,255,255,.97);

    border-bottom:
        1px solid rgba(0,0,0,.07);
}

.gk-header .navbar {

    height: 100%;
}

.gk-logo {

    padding: 0;
    margin: 0;
}

.gk-logo img {

    width: 180px;

    height: auto;

    max-height: 72px;

    object-fit: contain;
}

.gk-header .gk-nav {

    gap: 34px;
}

.gk-header .gk-nav .nav-link {

    position: relative;

    padding: 37px 0 !important;

    color: #383735;

    font-size: 13px;

    font-weight: 600;

    transition:
        color .25s ease;
}

.gk-header .gk-nav .nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--gold);

    transition:
        width .25s ease;
}

.gk-header .gk-nav .nav-link:hover {

    color: var(--gold-dark);
}

.gk-header .gk-nav .nav-link:hover::after {

    width: 100%;
}

.gk-header-contact {

    min-width: 145px;
    height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 0 20px;

    color: var(--white);

    background: var(--black);

    font-size: 12px;

    font-weight: 700;

    transition:
        background .25s ease,
        transform .25s ease;
}

.gk-header-contact i {

    color: var(--gold);

    font-size: 18px;

    font-style: normal;
}

.gk-header-contact:hover {

    color: var(--white);

    background: var(--gold-dark);

    transform: translateY(-2px);
}

.gk-header-contact:hover i {

    color: var(--white);
}

.gk-navbar-toggler {

    padding: 8px;

    border: 0 !important;

    box-shadow: none !important;
}


/* =========================================================
   HERO
========================================================= */

.gk-hero {

    position: relative;

    min-height: 900px;

    display: flex;

    align-items: center;

    background: var(--black);

    overflow: hidden;
}

.gk-hero-image {

    position: absolute;

    inset: 0;
}

.gk-hero-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.gk-hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(10,10,10,.94) 0%,
            rgba(10,10,10,.78) 38%,
            rgba(10,10,10,.38) 68%,
            rgba(10,10,10,.15) 100%
        ),

        linear-gradient(
            0deg,
            rgba(0,0,0,.65),
            transparent 50%
        );
}

.gk-hero-container {

    position: relative;

    z-index: 3;

    min-height: 900px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-top: 110px;
}

.gk-hero-content {

    max-width: 900px;
}

.gk-eyebrow {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 25px;

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.gk-eyebrow span {

    display: block;

    width: 36px;
    height: 2px;

    background: var(--gold);
}

.gk-eyebrow-light {

    color: #e5e2d8;
}

.gk-hero h1 {

    max-width: 850px;

    margin: 0;

    color: var(--white);

    font-size:
        clamp(58px, 6vw, 96px);

    line-height: .99;

    font-weight: 300;

    letter-spacing: -4px;
}

.gk-hero h1 strong {

    display: block;

    margin-top: 10px;

    color: var(--gold);

    font-weight: 700;
}

.gk-hero-content > p {

    max-width: 620px;

    margin-top: 32px;

    color:
        rgba(255,255,255,.75);

    font-size: 17px;

    line-height: 1.85;
}

.gk-hero-actions {

    display: flex;

    align-items: center;

    gap: 35px;

    margin-top: 40px;
}


/* =========================================================
   BUTTONS
========================================================= */

.gk-button {

    min-height: 60px;

    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    padding: 0 25px;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform .25s ease,
        background .25s ease;
}

.gk-button:hover {

    transform:
        translateY(-3px);
}

.gk-button i {

    font-style: normal;

    font-size: 21px;
}

.gk-button-gold {

    color: var(--black);

    background: var(--gold);
}

.gk-button-gold:hover {

    color: var(--black);

    background: #e3ba50;
}

.gk-button-dark {

    color: var(--white);

    background: var(--black);
}

.gk-button-dark:hover {

    color: var(--white);

    background: #292929;
}

.gk-button-dark i {

    color: var(--gold);
}

.gk-text-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding-bottom: 5px;

    color: var(--white);

    border-bottom:
        1px solid rgba(255,255,255,.4);

    font-size: 13px;
}

.gk-text-link:hover {

    color: var(--gold);
}

.gk-text-link span {

    color: var(--gold);
}


/* =========================================================
   HERO STATS
========================================================= */

.gk-hero-bottom {

    position: absolute;

    left: 12px;
    bottom: 55px;

    display: flex;

    gap: 55px;
}

.gk-hero-stat {

    display: flex;

    align-items: center;

    gap: 16px;

    padding-right: 55px;

    border-right:
        1px solid rgba(255,255,255,.2);
}

.gk-hero-stat:last-child {

    border-right: 0;
}

.gk-hero-stat strong {

    color: var(--gold);

    font-size: 30px;

    font-weight: 500;
}

.gk-hero-stat span {

    color:
        rgba(255,255,255,.65);

    font-size: 11px;

    line-height: 1.5;
}

.gk-hero-side {

    position: absolute;

    right: 25px;
    top: 50%;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 18px;

    transform:
        translateY(-50%)
        rotate(90deg);

    color:
        rgba(255,255,255,.5);

    font-size: 9px;

    letter-spacing: 3px;
}

.gk-hero-side i {

    width: 50px;
    height: 1px;

    background: var(--gold);
}


/* =========================================================
   INTRO STRIP
========================================================= */

.gk-intro-strip {

    padding: 31px 0;

    background: var(--gold);
}

.gk-intro-marquee {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    white-space: nowrap;
}

.gk-intro-marquee span {

    color: var(--black);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.gk-intro-marquee i {

    color: var(--black);

    font-size: 12px;

    font-style: normal;
}


/* =========================================================
   ABOUT
========================================================= */

.gk-about {

    background: var(--white);
}

.gk-about-images {

    position: relative;

    min-height: 720px;
}

.gk-about-main-image {

    position: absolute;

    left: 0;
    top: 0;

    width: 77%;
    height: 450px;

    overflow: hidden;
}

.gk-about-main-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.gk-about-small-image {

    position: absolute;

    right: 0;
    bottom: 0;

   
    height: 350px;

    padding:
        12px 0 0 12px;

 
}

.gk-about-small-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.gk-about-badge {

    position: absolute;

    right: 5%;
    top: 70px;

    z-index: 5;

    width: 145px;
    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    color: var(--black);

    background: var(--gold);
}

.gk-about-badge span {

    font-size: 39px;

    font-weight: 800;

    line-height: 1;
}

.gk-about-badge small {

    margin-top: 9px;

    text-align: center;

    font-size: 9px;

    font-weight: 700;

    line-height: 1.5;

    letter-spacing: 1px;
}

.gk-about-content h2,
.gk-why-title h2,
.gk-contact-cta h2 {

    margin: 0;

    color: var(--black);

    font-size:
        clamp(44px, 4.5vw, 68px);

    font-weight: 300;

    line-height: 1.08;

    letter-spacing: -2.5px;
}

.gk-about-content h2 strong,
.gk-why-title h2 strong,
.gk-contact-cta h2 strong {

    display: block;

    color: var(--gold-dark);

    font-weight: 700;
}

.gk-about-description {

    max-width: 650px;

    margin-top: 35px;
}

.gk-about-description p {

    margin-top: 15px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.85;
}

.gk-about-features {

    margin-top: 40px;

    border-top:
        1px solid var(--border);
}

.gk-about-feature {

    display: grid;

    grid-template-columns:
        50px 1fr;

    gap: 20px;

    padding: 22px 0;

    border-bottom:
        1px solid var(--border);
}

.gk-about-feature > span {

    padding-top: 4px;

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 800;
}

.gk-about-feature h3 {

    margin-bottom: 5px;

    color: var(--black);

    font-size: 16px;

    font-weight: 700;
}

.gk-about-feature p {

    margin: 0;

    color: var(--text);

    font-size: 13px;
}

.gk-arrow-link {

    display: inline-flex;

    align-items: center;

    gap: 30px;

    margin-top: 35px;

    color: var(--black);

    font-size: 13px;

    font-weight: 700;
}

.gk-arrow-link:hover {

    color: var(--black);
}

.gk-arrow-link i {

    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    color: var(--black);

    background: var(--gold);

    border-radius: 50%;

    font-style: normal;

    font-size: 18px;

    transition:
        transform .25s ease;
}

.gk-arrow-link:hover i {

    transform: rotate(45deg);
}


/* =========================================================
   SERVICES
========================================================= */

.gk-services {

    color: var(--white);

    background: var(--black);
}

.gk-services-title {

    margin: 0;

    color: var(--white);

    font-size:
        clamp(44px, 4.5vw, 68px);

    font-weight: 300;

    line-height: 1.08;

    letter-spacing: -2.5px;
}

.gk-services-title strong {

    display: block;

    color: var(--gold);

    font-weight: 700;
}

.gk-services-description {

    max-width: 500px;

    margin: 0 0 8px auto;

    color: #999;

    font-size: 14px;

    line-height: 1.8;
}

.gk-service-card {

    position: relative;

    min-height: 330px;

    overflow: hidden;

    background: #222;
}

.gk-service-large {

    height: 676px;
}

.gk-service-image {

    position: absolute;

    inset: 0;
}

.gk-service-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s
        cubic-bezier(.2,.7,.2,1);
}

.gk-service-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            0deg,
            rgba(0,0,0,.92),
            rgba(0,0,0,.08) 78%
        );
}

.gk-service-card:hover
.gk-service-image img {

    transform: scale(1.055);
}

.gk-service-content {

    position: relative;

    z-index: 3;

    min-height: 330px;
    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 32px;
}

.gk-service-number {

    align-self: flex-end;

    color:
        rgba(255,255,255,.65);

    font-size: 11px;

    letter-spacing: 1px;
}

.gk-service-content small {

    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.gk-service-content h3 {

    margin: 0;

    color: var(--white);

    font-size: 27px;

    line-height: 1.15;

    font-weight: 500;
}

.gk-service-large
.gk-service-content h3 {

    font-size: 48px;
}

.gk-service-content p {

    max-width: 420px;

    margin-top: 15px;

    color:
        rgba(255,255,255,.7);

    font-size: 13px;
}

.gk-service-content a {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    width: fit-content;

    margin-top: 20px;

    color: var(--white);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.gk-service-content a:hover {

    color: var(--gold);
}

.gk-service-content a i {

    color: var(--gold);

    font-style: normal;

    font-size: 18px;
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.gk-philosophy {

    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    color: var(--white);

    background: var(--black);

    overflow: hidden;
}

.gk-philosophy-image {

    position: absolute;

    inset: 0;
}

.gk-philosophy-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.gk-philosophy-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.40)
        );
}

.gk-big-number {

    display: block;

    color: transparent;

    font-size:
        clamp(110px, 15vw, 230px);

    line-height: 1;

    font-weight: 700;

    -webkit-text-stroke:
        1px rgba(255,255,255,.45);
}

.gk-philosophy h2 {

    max-width: 800px;

    margin: 0;

    color: var(--white);

    font-size:
        clamp(43px, 5vw, 70px);

    font-weight: 300;

    line-height: 1.07;

    letter-spacing: -3px;
}

.gk-philosophy h2 strong {

    display: block;

    color: var(--gold);

    font-weight: 700;
}

.gk-philosophy p {

    max-width: 600px;

    margin-top: 30px;

    color:
        rgba(255,255,255,.7);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   WHY
========================================================= */

.gk-why {

    background: var(--cream);
}

.gk-why-title {

    position: sticky;

    top: 150px;
}

.gk-why-title > p {

    max-width: 470px;

    margin-top: 30px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}

.gk-why-items {

    border-top:
        1px solid #cbc7bc;
}

.gk-why-item {

    display: grid;

    grid-template-columns:
        70px 1fr 50px;

    gap: 25px;

    align-items: start;

    padding: 40px 0;

    border-bottom:
        1px solid #cbc7bc;

    transition:
        padding .3s ease;
}

.gk-why-item:hover {

    padding-left: 15px;
}

.gk-why-item > span {

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 800;
}

.gk-why-item h3 {

    margin-bottom: 10px;

    color: var(--black);

    font-size: 24px;

    font-weight: 600;
}

.gk-why-item p {

    max-width: 500px;

    margin: 0;

    color: var(--text);

    font-size: 13px;

    line-height: 1.75;
}

.gk-why-item > i {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    color: var(--black);

    border:
        1px solid #c8c4b9;

    border-radius: 50%;

    font-style: normal;

    transition: .25s ease;
}

.gk-why-item:hover > i {

    color: var(--white);

    background: var(--gold-dark);

    border-color:
        var(--gold-dark);
}


/* =========================================================
   PROCESS
========================================================= */

.gk-process {

    background: var(--white);
}

.gk-process-title {

    margin: 0;

    color: var(--black);

    font-size:
        clamp(44px, 4.5vw, 68px);

    font-weight: 300;

    line-height: 1.08;

    letter-spacing: -2.5px;
}

.gk-process-title strong {

    display: block;

    color: var(--gold-dark);

    font-weight: 700;
}

.gk-process-description {

    max-width: 500px;

    margin-left: auto;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}

.gk-process-row {

    border-top:
        1px solid var(--border);

    border-left:
        1px solid var(--border);
}

.gk-process-item {

    position: relative;

    min-height: 330px;

    padding: 35px;

    border-right:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    transition:
        background .3s ease,
        transform .3s ease;
}

.gk-process-item:hover {

    background: var(--cream);

    transform:
        translateY(-5px);
}

.gk-process-number {

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 800;
}

.gk-process-icon {

    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    margin:
        55px 0 25px;

    color: var(--black);

    background: var(--gold);

    border-radius: 50%;

    font-size: 18px;
}

.gk-process-item h3 {

    margin-bottom: 12px;

    color: var(--black);

    font-size: 22px;

    font-weight: 600;
}

.gk-process-item p {

    margin: 0;

    color: var(--text);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   SHOWCASE
========================================================= */

.gk-showcase {

    padding: 125px 0;

    background: var(--white);
}

.gk-showcase-image {

    height: 650px;

    overflow: hidden;
}

.gk-showcase-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.gk-showcase-content {

    min-height: 650px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    padding: 70px;

    background: var(--gold);
}

.gk-showcase-content > img {

    width: 190px;

    height: auto;

    object-fit: contain;
}

.gk-showcase-line {

    width: 50px;
    height: 1px;

    margin: 45px 0;

    background:
        rgba(0,0,0,.45);
}

.gk-showcase blockquote {

    max-width: 500px;

    margin-bottom: 40px;

    color: var(--black);

    font-size:
        clamp(27px, 3vw, 42px);

    font-weight: 400;

    line-height: 1.3;

    letter-spacing: -1px;
}


/* =========================================================
   CONTACT CTA
========================================================= */

.gk-contact-cta {

    padding: 120px 0;

    background: var(--cream);
}

.gk-contact-action {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.gk-contact-action > p {

    max-width: 300px;

    margin: 0;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}

.gk-contact-circle {

    flex:
        0 0 150px;

    width: 150px;
    height: 150px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--black);

    border-radius: 50%;

    transition:
        transform .3s ease,
        background .3s ease;
}

.gk-contact-circle:hover {

    color: var(--white);

    background:
        var(--gold-dark);

    transform:
        rotate(-7deg)
        scale(1.04);
}

.gk-contact-circle span {

    font-size: 14px;

    font-weight: 700;

    line-height: 1.25;
}

.gk-contact-circle i {

    margin-top: 10px;

    color: var(--gold);

    font-size: 20px;

    font-style: normal;
}


/* =========================================================
   FOOTER
========================================================= */

.gk-footer {

    padding-top: 85px;

    color: #aaa;

    background: #131313;
}

.gk-footer-top {

    padding-bottom: 70px;
}

.gk-footer-brand img {

    width: 190px;

    height: auto;

    max-height: 90px;

    object-fit: contain;

    filter:
        brightness(0)
        invert(1);
}

.gk-footer-brand p {

    max-width: 320px;

    margin-top: 25px;

    color: #888;

    font-size: 13px;

    line-height: 1.8;
}

.gk-footer-column h3 {

    margin-bottom: 25px;

    color: var(--white);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.gk-footer-column a {

    display: block;

    width: fit-content;

    margin: 12px 0;

    color: #888;

    font-size: 12px;

    transition:
        color .2s ease;
}

.gk-footer-column a:hover {

    color: var(--gold);
}

.gk-footer-bottom {

    min-height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #666;

    border-top:
        1px solid rgba(255,255,255,.08);

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .gk-section {

        padding: 90px 0;
    }


    /* HEADER */

    .gk-header {

        height: 78px;
    }

    .gk-logo img {

        width: 155px;

        max-height: 62px;
    }

    .gk-header .navbar-collapse {

        position: absolute;

        left: 0;
        top: 78px;

        width: 100%;

        padding:
            15px 20px 25px;

        background: var(--white);

        border-top:
            1px solid #eee;

        box-shadow:
            0 20px 40px
            rgba(0,0,0,.08);
    }

    .gk-header .gk-nav {

        display: block;

        width: 100%;
    }

    .gk-header
    .gk-nav
    .nav-link {

        padding:
            14px 5px !important;

        border-bottom:
            1px solid #eee;
    }

    .gk-header
    .gk-nav
    .nav-link::after {

        display: none;
    }

    .gk-header-contact {

        width: 100%;

        margin:
            15px 0 0 !important;

        justify-content:
            space-between;
    }


    /* HERO */

    .gk-hero,
    .gk-hero-container {

        min-height: 800px;
    }

    .gk-hero h1 {

        letter-spacing: -3px;
    }

    .gk-hero-side {

        display: none;
    }


    /* ABOUT */

    .gk-about-images {

        min-height: 650px;

        margin-bottom: 40px;
    }


    /* SERVICES */

    .gk-services-description {

        margin:
            25px 0 0;
    }

    .gk-service-large {

        height: 600px;

        margin-bottom: 15px;
    }


    /* PHILOSOPHY */

    .gk-philosophy {

        padding: 100px 0;

        min-height: 650px;
    }

    .gk-big-number {

        font-size: 130px;
    }


    /* WHY */

    .gk-why-title {

        position: static;

        margin-bottom: 30px;
    }


    /* SHOWCASE */

    .gk-showcase {

        padding: 90px 0;
    }

    .gk-showcase-image {

        height: 500px;
    }

    .gk-showcase-content {

        min-height: 500px;
    }


    /* CONTACT */

    .gk-contact-action {

        justify-content:
            flex-start;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .gk-section {

        padding: 70px 0;
    }


    /* HERO */

    .gk-hero,
    .gk-hero-container {

        min-height: 780px;
    }

    .gk-hero-container {

        justify-content:
            flex-start;

        padding-top: 170px;
    }

    .gk-hero h1 {

        font-size: 50px;

        letter-spacing: -2px;
    }

    .gk-hero-content > p {

        font-size: 15px;
    }

    .gk-hero-actions {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 25px;
    }

    .gk-hero-bottom {

        left: 12px;
        right: 12px;

        bottom: 30px;

        gap: 10px;

        justify-content:
            space-between;
    }

    .gk-hero-stat {

        display: block;

        padding-right: 12px;
    }

    .gk-hero-stat strong {

        display: block;

        margin-bottom: 5px;

        font-size: 21px;
    }

    .gk-hero-stat span {

        font-size: 9px;
    }


    /* STRIP */

    .gk-intro-marquee {

        justify-content:
            flex-start;

        overflow: hidden;
    }

    .gk-intro-marquee
    span:nth-of-type(n+4) {

        display: none;
    }


    /* ABOUT */

    .gk-about-images {

        min-height: 500px;
    }

    .gk-about-main-image {

        width: 88%;

        height: 450px;
    }

    .gk-about-small-image {

        width: 48%;

        height: 230px;
    }

    .gk-about-badge {

        top: 30px;

        width: 110px;
        height: 110px;
    }

    .gk-about-badge span {

        font-size: 29px;
    }


    /* HEADINGS */

    .gk-about-content h2,
    .gk-services-title,
    .gk-why-title h2,
    .gk-process-title,
    .gk-contact-cta h2 {

        font-size: 42px;

        letter-spacing: -1.5px;
    }


    /* SERVICES */

    .gk-service-large {

        height: 480px;
    }

    .gk-service-card {

        min-height: 400px;
    }

    .gk-service-content {

        min-height: 400px;
    }

    .gk-service-large
    .gk-service-content h3 {

        font-size: 36px;
    }


    /* PHILOSOPHY */

    .gk-philosophy {

        min-height: 600px;

        padding: 80px 0;
    }

    .gk-philosophy h2 {

        font-size: 40px;

        letter-spacing: -1.5px;
    }


    /* WHY */

    .gk-why-item {

        grid-template-columns:
            40px 1fr;

        gap: 15px;
    }

    .gk-why-item > i {

        display: none;
    }


    /* SHOWCASE */

    .gk-showcase {

        padding: 70px 0;
    }

    .gk-showcase-image {

        height: 350px;
    }

    .gk-showcase-content {

        min-height: auto;

        padding:
            50px 30px;
    }


    /* CONTACT */

    .gk-contact-cta {

        padding: 80px 0;
    }

    .gk-contact-action {

        align-items:
            flex-start;

        flex-direction:
            column;
    }


    /* FOOTER */

    .gk-footer-bottom {

        align-items:
            flex-start;

        flex-direction:
            column;

        justify-content:
            center;

        gap: 6px;

        padding: 20px 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .gk-hero h1 {

        font-size: 43px;
    }

    .gk-button {

        width: 100%;
    }

    .gk-hero-actions {

        width: 100%;
    }

    .gk-about-content h2,
    .gk-services-title,
    .gk-why-title h2,
    .gk-process-title,
    .gk-contact-cta h2 {

        font-size: 37px;
    }

    .gk-service-content {

        padding: 25px;
    }

    .gk-process-item {

        min-height: auto;
    }

    .gk-showcase blockquote {

        font-size: 28px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        transition-duration:
            .01ms !important;
    }
}