/* =========================================
   ROOT VARIABLES
========================================= */

:root {
    --primary-blue: #0757a6;
    --deep-blue: #062b59;
    --gold: #c9952e;
    --gold-light: #e3b64d;
    --dark: #111827;
    --text: #343434;
    --white: #ffffff;
    --off-white: #faf9f6;

    --header-height: 92px;

    --transition: all 0.35s ease;
}


/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================
   FOOTER CTA
========================================= */
.footer-cta {

    position: relative;

    overflow: hidden;

    padding: 80px 0;

    background:
        linear-gradient(
            120deg,
            #061d3a,
            #073e73 55%,
            #0a2a52
        );

    color: #fff;
}


/* Decorative glow */

.footer-cta::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    top: -220px;
    right: -80px;

    background:
        radial-gradient(
            circle,
            rgba(201,149,46,0.22),
            transparent 70%
        );

    pointer-events: none;
}


.footer-cta::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    bottom: -250px;
    left: -80px;

    background:
        radial-gradient(
            circle,
            rgba(8,108,203,0.25),
            transparent 70%
        );

    pointer-events: none;
}


.footer-cta-container {

    width: min(
        1200px,
        calc(100% - 40px)
    );

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    position: relative;

    z-index: 2;
}


.footer-eyebrow {

    display: inline-block;

    margin-bottom: 15px;

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 700;

    color: var(--gold-light);
}


.footer-cta h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(
        38px,
        5vw,
        64px
    );

    line-height: 1.05;

    font-weight: 600;

    margin-bottom: 20px;
}


.footer-cta h2 span {

    display: block;

    color: var(--gold-light);
}


.footer-cta-content p {

    max-width: 570px;

    color: rgba(255,255,255,0.72);

    font-size: 15px;

    line-height: 1.8;
}


/* CTA ACTION */

.footer-cta-action {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 20px;

    flex-shrink: 0;
}


.footer-main-btn {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 17px 25px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #d7a43a,
            #b87d18
        );

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 15px 30px rgba(0,0,0,0.2);

    transition: all 0.35s ease;
}


.footer-main-btn i {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.18);

    transition: transform 0.3s ease;
}


.footer-main-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 20px 35px rgba(0,0,0,0.3);
}


.footer-main-btn:hover i {

    transform: translateX(4px);
}


/* CALL BUTTON */

.footer-call-btn {

    display: flex;

    align-items: center;

    gap: 13px;

    color: #fff;

    transition: all 0.3s ease;
}


.footer-call-btn > i {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 50%;

    color: var(--gold-light);
}


.footer-call-btn span {

    display: flex;

    flex-direction: column;

    gap: 2px;

    font-size: 14px;

    font-weight: 600;
}


.footer-call-btn small {

    font-size: 10px;

    color: rgba(255,255,255,0.55);

    text-transform: uppercase;

    letter-spacing: 1px;
}


.footer-call-btn:hover {

    transform: translateX(4px);
}


/* =========================================
   MAIN FOOTER
========================================= */

.site-footer {

    background: #07111f;

    color: #fff;

    padding-top: 75px;
}


.footer-container {

    width: min(
        1200px,
        calc(100% - 40px)
    );

    margin: auto;
}


/* =========================================
   FOOTER GRID
========================================= */

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        1fr
        1.25fr;

    gap: 55px;

    padding-bottom: 60px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-logo {

    display: inline-block;

    width: 180px;

    margin-bottom: 20px;

    padding: 10px;

    background: #fff;

    border-radius: 8px;
}


.footer-logo img {

    width: 100%;

    display: block;
}


.footer-about {

    max-width: 310px;

    color: rgba(255,255,255,0.58);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 15px;
}


.footer-tagline {

    color: var(--gold-light);

    font-family: "Playfair Display", serif;

    font-size: 14px;

    font-style: italic;

    margin-bottom: 25px;
}


/* =========================================
   SOCIAL
========================================= */

.footer-social {

    display: flex;

    gap: 9px;
}


.footer-social a {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;

    color: rgba(255,255,255,0.65);

    font-size: 13px;

    transition: all 0.3s ease;
}


.footer-social a:hover {

    background: var(--gold);

    border-color: var(--gold);

    color: #fff;

    transform: translateY(-4px);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {

    position: relative;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 25px;

    padding-bottom: 12px;
}


.footer-column h3::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold-light)
        );
}


.footer-column ul {

    list-style: none;
}


.footer-column li {

    margin-bottom: 13px;
}


.footer-column li a {

    color: rgba(255,255,255,0.55);

    font-size: 13px;

    transition: all 0.3s ease;
}


.footer-column li a::before {

    content: "→";

    display: inline-block;

    margin-right: 7px;

    color: var(--gold);

    opacity: 0;

    transform: translateX(-5px);

    transition: all 0.3s ease;
}


.footer-column li a:hover {

    color: #fff;

    padding-left: 3px;
}


.footer-column li a:hover::before {

    opacity: 1;

    transform: translateX(0);
}


/* =========================================
   CONTACT
========================================= */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 19px;
}


.contact-icon {

    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background:
        rgba(201,149,46,0.10);

    color: var(--gold-light);

    font-size: 12px;
}


.footer-contact-item span {

    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,0.38);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.footer-contact-item p,
.footer-contact-item a {

    color: rgba(255,255,255,0.68);

    font-size: 12px;

    line-height: 1.6;
}


.footer-contact-item a:hover {

    color: var(--gold-light);
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 0;

    border-top:
        1px solid rgba(255,255,255,0.08);
}


.footer-bottom p {

    color: rgba(255,255,255,0.38);

    font-size: 11px;
}


.footer-bottom strong {

    color: rgba(255,255,255,0.65);
}


.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 15px;
}


.footer-bottom-links a {

    color: rgba(255,255,255,0.4);

    font-size: 11px;

    transition: color 0.3s ease;
}


.footer-bottom-links a:hover {

    color: var(--gold-light);
}


.footer-bottom-links span {

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--gold);
}


/* =========================================
   FLOATING WHATSAPP
========================================= */

.floating-whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;

    color: #fff;

    font-size: 25px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.2);

    z-index: 999;

    transition: all 0.3s ease;

    animation:
        whatsappPulse 2.5s infinite;
}


.floating-whatsapp:hover {

    transform:
        translateY(-5px)
        scale(1.05);

    animation: none;
}


.whatsapp-tooltip {

    position: absolute;

    right: 68px;

    white-space: nowrap;

    padding: 8px 12px;

    background: #111;

    color: #fff;

    font-size: 11px;

    border-radius: 6px;

    opacity: 0;

    visibility: hidden;

    transform: translateX(5px);

    transition: all 0.3s ease;
}


.floating-whatsapp:hover .whatsapp-tooltip {

    opacity: 1;

    visibility: visible;

    transform: translateX(0);
}


@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37,211,102,0.35);
    }

    70% {
        box-shadow:
            0 0 0 14px rgba(37,211,102,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37,211,102,0);
    }
}


/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 95px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(6,43,89,0.12);

    border-radius: 50%;

    background: #fff;

    color: var(--deep-blue);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.3s ease;

    z-index: 998;
}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.back-to-top:hover {

    background: var(--deep-blue);

    color: #fff;

    transform: translateY(-3px);
}


/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .footer-grid {

        grid-template-columns:
            1.4fr 1fr 1fr;

    }

    .footer-contact {

        grid-column: span 3;
    }

}


@media (max-width: 700px) {

    .footer-cta {

        padding: 60px 0;
    }


    .footer-cta-container {

        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }


    .footer-cta h2 {

        font-size: 42px;
    }


    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;

        padding-bottom: 45px;
    }


    .footer-brand {

        grid-column: span 2;
    }


    .footer-contact {

        grid-column: span 2;
    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        padding-bottom: 25px;
    }

}


@media (max-width: 480px) {

    .footer-cta-container {

        width: calc(100% - 30px);
    }


    .footer-cta h2 {

        font-size: 36px;
    }


    .footer-cta-content p {

        font-size: 13px;
    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-brand,
    .footer-contact {

        grid-column: span 1;
    }


    .footer-column li a {

        font-size: 12px;
    }


    .footer-bottom-links {

        flex-wrap: wrap;

        gap: 10px;
    }


    .floating-whatsapp {

        right: 18px;

        bottom: 18px;

        width: 52px;
        height: 52px;
    }


    .back-to-top {

        right: 18px;

        bottom: 82px;
    }

}

.site-logo {
    width: 100px;
}

.site-header.scrolled .site-logo {
    width: 100px;
}

@media (max-width: 1050px) {
    .site-logo {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        width: 105px;
    }
}
/* =================================
   FOOTER BOTTOM
================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
    flex: 1;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    line-height: 1.5;
}

.footer-copyright strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.developed-by {
    flex-shrink: 0;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    line-height: 1.5;
    text-align: right;
}

.developed-by a {
    color: var(--gold-light);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developed-by a:hover {
    color: #fff;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 768px) {

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
        padding: 18px 0;
    }

    .footer-copyright {
        flex: none;
    }

    .footer-copyright p {
        font-size: 10px;
    }

    .developed-by {
        text-align: center;
        font-size: 10px;
    }

}

/* =========================================
   PREMIUM HERO SECTION
========================================= */

.hero-section {
    position: relative;
    background: var(--off-white);
    overflow: hidden;
    padding: 75px 0 85px;
}

.hero-container {
    width: min(1180px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 70px;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 20px;
}

.hero-eyebrow span {
    width: 32px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

.hero-content h1 {
    margin: 0;

    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);

    font-size: clamp(46px, 5vw, 72px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.hero-content h1 span {
    display: block;
    color: var(--primary-blue);
}

.hero-description {
    max-width: 550px;

    margin: 25px 0 32px;

    color: #5c6470;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-primary-btn,
.hero-secondary-btn {
    min-height: 54px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.35s ease;
}

.hero-primary-btn {
    color: #fff;
    background: var(--deep-blue);
    border: 1px solid var(--deep-blue);
}

.hero-primary-btn i {
    transition: transform 0.3s ease;
}

.hero-primary-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.hero-primary-btn:hover i {
    transform: translateX(4px);
}

.hero-secondary-btn {
    color: var(--deep-blue);
    background: transparent;
    border: 1px solid rgba(6, 43, 89, 0.2);
}

.hero-secondary-btn:hover {
    color: var(--primary-blue);
    border-color: var(--gold);
    transform: translateY(-2px);
}


/* =========================================
   HERO TRUST
========================================= */

.hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;

    margin-top: 45px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-trust-item strong {
    color: var(--deep-blue);
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 600;
}

.hero-trust-item span {
    color: #777;
    font-size: 10px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-trust-divider {
    width: 1px;
    height: 35px;
    background: rgba(6, 43, 89, 0.15);
}


/* =========================================
   HERO IMAGE
========================================= */

.hero-visual {
    position: relative;
    padding: 0 0 35px 25px;
}

.hero-image-wrap {
    position: relative;
    height: 600px;

    overflow: hidden;
    background: #ddd;
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.02),
            rgba(0,0,0,0.08)
        );

    pointer-events: none;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 1s ease;
}

.hero-image-wrap:hover img {
    transform: scale(1.03);
}


/* =========================================
   GOLD ACCENT
========================================= */

.hero-image-accent {
    position: absolute;

    width: 95px;
    height: 95px;

    right: -18px;
    bottom: 5px;

    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);

    pointer-events: none;
}


/* =========================================
   FLOATING CARD
========================================= */

.hero-floating-card {
    position: absolute;

    left: -5px;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 17px 22px;

    background: #fff;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.12);

    min-width: 245px;
}

.hero-card-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(201, 149, 46, 0.1);
    color: var(--gold);

    font-size: 17px;
}

.hero-floating-card strong {
    display: block;

    color: var(--deep-blue);
    font-size: 12px;
    font-weight: 700;

    margin-bottom: 4px;
}

.hero-floating-card span {
    display: block;

    color: #888;
    font-size: 10px;
}


/* =========================================
   HERO BOTTOM STRIP
========================================= */

.hero-bottom-strip {
    background: var(--deep-blue);
}

.hero-strip-container {
    width: min(1180px, 92%);
    min-height: 62px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    color: rgba(255,255,255,0.65);

    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.hero-strip-container i {
    color: var(--gold);
    font-size: 4px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .hero-section {
        padding: 55px 0 65px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-image-wrap {
        height: 520px;
    }

    .hero-trust {
        gap: 14px;
    }

    .hero-trust-item {
        gap: 7px;
    }

    .hero-trust-item strong {
        font-size: 21px;
    }

    .hero-trust-item span {
        font-size: 8px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .hero-section {
        padding: 45px 0 55px;
    }

    .hero-container {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 43px;
        letter-spacing: -0.8px;
    }

    .hero-description {
        margin: 20px auto 28px;
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        min-height: 50px;
        padding: 0 19px;
        font-size: 11px;
    }

    .hero-trust {
        justify-content: center;
        gap: 15px;
        margin-top: 35px;
    }

    .hero-trust-item {
        display: block;
        text-align: center;
    }

    .hero-trust-item strong {
        display: block;
        margin-bottom: 3px;
    }

    .hero-trust-divider {
        height: 40px;
    }

    .hero-visual {
        padding: 0 10px 30px;
    }

    .hero-image-wrap {
        height: 450px;
    }

    .hero-floating-card {
        left: 0;
        min-width: auto;
        padding: 14px 17px;
    }

    .hero-image-accent {
        right: -3px;
        bottom: 2px;
    }

    .hero-strip-container {
        min-height: 55px;
        gap: 12px;
        justify-content: flex-start;
        overflow: hidden;
        white-space: nowrap;
        font-size: 8px;
    }

    .hero-strip-container i {
        flex-shrink: 0;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
    }

    .hero-trust {
        gap: 10px;
    }

    .hero-trust-item strong {
        font-size: 19px;
    }

    .hero-trust-item span {
        font-size: 7px;
    }

    .hero-image-wrap {
        height: 390px;
    }

    .hero-floating-card {
        padding: 12px 14px;
    }

}

/* =========================================
   ABOUT HOME SECTION
========================================= */

.about-home-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 100px;
    background: #fff;
}

.about-home-container {
    width: min(1180px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 70px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.about-home-content {
    position: relative;
    z-index: 2;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.section-eyebrow span {
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.about-home-content h2 {
    margin: 0;

    color: var(--deep-blue);
    font-family: 'Playfair Display', serif;

    font-size: clamp(40px, 4.2vw, 58px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -1px;
}

.about-home-content h2 span {
    display: block;
    color: var(--primary-blue);
}

.about-home-intro {
    max-width: 600px;

    margin: 25px 0 12px;

    color: #505967;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.about-home-text {
    max-width: 600px;

    margin: 0 0 30px;

    color: #737983;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 17px;

    margin-bottom: 32px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(201, 149, 46, 0.09);
    color: var(--gold);

    font-size: 17px;
}

.about-highlight strong {
    display: block;

    color: var(--deep-blue);
    font-size: 14px;
    font-weight: 700;

    margin-bottom: 3px;
}

.about-highlight span {
    display: block;

    color: #858585;
    font-size: 11px;
}


/* =========================================
   ABOUT BUTTON
========================================= */

.about-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 15px 24px;

    background: var(--deep-blue);
    border: 1px solid var(--deep-blue);

    color: #fff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: all 0.35s ease;
}

.about-home-btn i {
    transition: transform 0.3s ease;
}

.about-home-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.about-home-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.about-home-visual {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   MAIN IMAGE
========================================= */

.about-image-circle {
    position: relative;
    z-index: 2;

    width: 360px;
    height: 360px;

    padding: 9px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 20px 60px rgba(6, 43, 89, 0.12),
        0 0 0 1px rgba(201,149,46,0.18);
}

.about-image-circle::before {
    content: "";

    position: absolute;
    inset: -10px;

    border: 1px solid rgba(201,149,46,0.35);
    border-radius: 50%;
}

.about-image-circle img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    border-radius: 50%;
}


/* =========================================
   10+ YEARS
========================================= */

.about-years {
    position: absolute;

    top: 5px;
    right: 25px;

    z-index: 4;

    text-align: center;
}

.about-years strong {
    display: block;

    color: rgba(6,43,89,0.06);

    font-family: 'Playfair Display', serif;
    font-size: 90px;
    line-height: 0.85;
    font-weight: 600;
}

.about-years span {
    display: block;

    margin-top: 8px;

    color: rgba(6,43,89,0.3);

    font-size: 9px;
    font-weight: 700;
    line-height: 1.5;

    letter-spacing: 2px;
}


/* =========================================
   ORBIT
========================================= */

.about-orbit {
    position: absolute;
    inset: 0;

    z-index: 3;

    pointer-events: none;
}

.about-orbit::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px dashed rgba(201,149,46,0.3);
    border-radius: 50%;
}


/* =========================================
   ORBIT ITEMS
========================================= */

.about-orbit-item {
    position: absolute;

    width: 160px;

    text-align: center;

    pointer-events: auto;
}

.orbit-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;
    border: 1px solid rgba(201,149,46,0.4);

    color: var(--gold);

    font-size: 18px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.06);

    transition: all 0.3s ease;
}

.about-orbit-item:hover .orbit-icon {
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

.about-orbit-item strong {
    display: block;

    color: var(--deep-blue);

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 3px;
}

.about-orbit-item span {
    display: block;

    color: #858585;

    font-size: 9px;
    line-height: 1.4;
}


/* TOP */

.orbit-top {
    top: 5px;
    left: 50%;

    transform: translateX(-50%);
}


/* LEFT */

.orbit-left {
    left: 0;
    top: 50%;

    transform: translateY(-50%);
}


/* RIGHT */

.orbit-right {
    right: 0;
    top: 50%;

    transform: translateY(-50%);
}


/* BOTTOM LEFT */

.orbit-bottom-left {
    left: 35px;
    bottom: 20px;
}


/* BOTTOM RIGHT */

.orbit-bottom-right {
    right: 35px;
    bottom: 20px;
}


/* =========================================
   TAGLINE
========================================= */

.about-home-tagline {
    margin-top: 30px;

    text-align: center;

    color: var(--gold);

    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
}

.about-home-tagline span {
    color: var(--deep-blue);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .about-home-container {
        gap: 40px;
    }

    .about-home-content h2 {
        font-size: 44px;
    }

    .about-home-visual {
        min-height: 560px;
    }

    .about-image-circle {
        width: 300px;
        height: 300px;
    }

    .about-orbit::before {
        width: 420px;
        height: 420px;
    }

    .about-orbit-item {
        width: 140px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .about-home-section {
        padding: 75px 0 70px;
    }

    .about-home-container {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-home-content {
        text-align: center;
    }

    .section-eyebrow {
        justify-content: center;
    }

    .about-home-content h2 {
        font-size: 40px;
    }

    .about-home-intro,
    .about-home-text {
        margin-left: auto;
        margin-right: auto;
    }

    .about-highlights {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .about-home-btn {
        margin-top: 5px;
    }

    .about-home-visual {
        min-height: 560px;
    }

    .about-image-circle {
        width: 280px;
        height: 280px;
    }

    .about-orbit::before {
        width: 400px;
        height: 400px;
    }

    .about-orbit-item {
        width: 125px;
    }

    .orbit-icon {
        width: 48px;
        height: 48px;
        font-size: 15px;
    }

    .orbit-top {
        top: 0;
    }

    .orbit-left {
        left: -5px;
    }

    .orbit-right {
        right: -5px;
    }

    .orbit-bottom-left {
        left: 5px;
        bottom: 15px;
    }

    .orbit-bottom-right {
        right: 5px;
        bottom: 15px;
    }

    .about-years {
        right: 0;
        top: 20px;
    }

    .about-years strong {
        font-size: 65px;
    }

    .about-home-tagline {
        width: 90%;
        margin: 20px auto 0;
        font-size: 19px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .about-home-content h2 {
        font-size: 34px;
    }

    .about-home-intro {
        font-size: 14px;
    }

    .about-home-text {
        font-size: 13px;
    }

    .about-home-visual {
        min-height: 500px;
    }

    .about-image-circle {
        width: 230px;
        height: 230px;
    }

    .about-orbit::before {
        width: 330px;
        height: 330px;
    }

    .about-orbit-item {
        width: 105px;
    }

    .orbit-icon {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .about-orbit-item strong {
        font-size: 9px;
    }

    .about-orbit-item span {
        font-size: 7px;
    }

    .orbit-bottom-left {
        left: -5px;
    }

    .orbit-bottom-right {
        right: -5px;
    }

    .about-years {
        right: -5px;
    }

    .about-years strong {
        font-size: 50px;
    }

    .about-years span {
        font-size: 7px;
    }

}

/* =========================================
   SERVICES HOME SECTION
========================================= */

.services-home-section {
    position: relative;
    padding: 105px 0 110px;
    background: var(--off-white);
    overflow: hidden;
}

.services-home-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.services-home-header {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 70px;
    align-items: end;

    margin-bottom: 55px;
}

.services-home-header h2 {
    margin: 0;

    color: var(--deep-blue);
    font-family: 'Playfair Display', serif;

    font-size: clamp(40px, 4.3vw, 58px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -1px;
}

.services-home-header h2 span {
    display: block;
    color: var(--primary-blue);
}

.services-home-header-right {
    padding-bottom: 5px;
}

.services-home-header-right p {
    margin: 0 0 18px;

    color: #707780;
    font-size: 14px;
    line-height: 1.8;
}

.services-view-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--deep-blue);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-view-link i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.services-view-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   SERVICES GRID
========================================= */

.services-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-home-card {
    position: relative;

    background: #fff;

    text-decoration: none;

    box-shadow: 0 8px 30px rgba(6,43,89,0.04);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.service-home-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(6,43,89,0.12);
}


/* =========================================
   IMAGE
========================================= */

.service-home-image {
    position: relative;

    height: 290px;

    overflow: hidden;
}

.service-home-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.service-home-card:hover .service-home-image img {
    transform: scale(1.06);
}

.service-home-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(6,43,89,0.05) 30%,
            rgba(6,43,89,0.55) 100%
        );
}


/* =========================================
   NUMBER
========================================= */

.service-number {
    position: absolute;

    top: 18px;
    right: 18px;

    color: rgba(255,255,255,0.8);

    font-family: 'Playfair Display', serif;
    font-size: 18px;
}


/* =========================================
   ICON
========================================= */

.service-home-icon {
    position: absolute;

    left: 20px;
    bottom: 20px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.95);

    color: var(--gold);

    font-size: 17px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.service-home-card:hover .service-home-icon {
    background: var(--gold);
    color: #fff;
}


/* =========================================
   CONTENT
========================================= */

.service-home-content {
    padding: 23px 21px 25px;
}

.service-home-content h3 {
    margin: 0 0 10px;

    color: var(--deep-blue);

    font-family: 'Playfair Display', serif;

    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
}

.service-home-content p {
    margin: 0 0 18px;

    color: #7a7f86;

    font-size: 11px;
    line-height: 1.7;
}

.service-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-home-link i {
    transition: transform 0.3s ease;
}

.service-home-card:hover .service-home-link i {
    transform: translateX(4px);
}


/* =========================================
   BOTTOM CTA
========================================= */

.services-home-cta {
    margin-top: 55px;

    padding: 30px 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: var(--deep-blue);
}

.services-home-cta span {
    display: block;

    margin-bottom: 5px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.services-home-cta h3 {
    margin: 0;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 25px;
    font-weight: 500;
}

.services-home-cta a {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 21px;

    background: var(--gold);

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.services-home-cta a:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.services-home-cta a i {
    transition: transform 0.3s ease;
}

.services-home-cta a:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .services-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-home-image {
        height: 320px;
    }

    .services-home-header {
        gap: 35px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .services-home-section {
        padding: 75px 0;
    }

    .services-home-header {
        grid-template-columns: 1fr;
        gap: 20px;

        text-align: center;
        margin-bottom: 38px;
    }

    .services-home-header .section-eyebrow {
        justify-content: center;
    }

    .services-home-header h2 {
        font-size: 39px;
    }

    .services-home-header-right p {
        max-width: 520px;
        margin: 0 auto 17px;
        font-size: 13px;
    }

    .services-home-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-home-image {
        height: 300px;
    }

    .service-home-content {
        padding: 21px;
    }

    .service-home-content h3 {
        font-size: 21px;
    }

    .services-home-cta {
        margin-top: 40px;

        flex-direction: column;
        align-items: flex-start;

        padding: 27px;
    }

    .services-home-cta h3 {
        font-size: 22px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .services-home-header h2 {
        font-size: 34px;
    }

    .service-home-image {
        height: 270px;
    }

    .services-home-cta a {
        width: 100%;
        justify-content: center;
    }

}

/* =========================================
   PREMIUM HEADER
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(255,255,255,0.97);

    border-bottom: 1px solid rgba(6,43,89,0.07);

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.98);

    box-shadow:
        0 8px 35px rgba(6,43,89,0.08);
}

.header-container {
    width: min(1280px, 92%);
    height: 88px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.site-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.site-logo img {
    width: 125px;
    height: auto;

    display: block;

    transition:
        width 0.35s ease,
        transform 0.35s ease;
}

.site-header.scrolled .site-logo img {
    width: 115px;
}


/* =========================================
   MAIN NAV
========================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;

    margin-left: auto;
}

.main-nav > a,
.dropdown-toggle {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 32px 10px;

    color: #3d4652;

    background: transparent;
    border: 0;

    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    cursor: pointer;

    transition: color 0.3s ease;
}

.main-nav > a::after,
.dropdown-toggle::after {
    content: "";

    position: absolute;

    left: 10px;
    right: 10px;
    bottom: 20px;

    height: 2px;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown:hover .dropdown-toggle,
.nav-dropdown.active-parent .dropdown-toggle {
    color: var(--primary-blue);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown:hover .dropdown-toggle::after,
.nav-dropdown.active-parent .dropdown-toggle::after {
    transform: scaleX(1);
}

.dropdown-toggle i {
    color: var(--gold);

    font-size: 8px;

    transition:
        transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}


/* =========================================
   SERVICES MEGA MENU
========================================= */

.nav-dropdown {
    position: relative;
}

.services-mega-menu {
    position: absolute;

    top: calc(100% - 3px);
    left: 50%;

    width: 780px;

    padding: 25px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

    background: #fff;

    border-top: 2px solid var(--gold);

    box-shadow:
        0 20px 55px rgba(6,43,89,0.14);

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, 12px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.nav-dropdown:hover .services-mega-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}


/* =========================================
   MEGA COLUMNS
========================================= */

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-heading {
    display: block;

    padding-bottom: 12px;
    margin-bottom: 8px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    border-bottom: 1px solid rgba(6,43,89,0.08);
}

.mega-column > a {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    padding: 10px 8px;

    color: #444;

    text-decoration: none;

    border-radius: 4px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.mega-column > a:hover {
    background: rgba(201,149,46,0.06);

    color: var(--primary-blue);

    transform: translateX(3px);
}

.menu-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    background: rgba(201,149,46,0.08);

    font-size: 12px;
}

.mega-column > a strong {
    display: block;

    color: var(--deep-blue);

    font-size: 10px;
    font-weight: 700;

    margin-bottom: 3px;
}

.mega-column > a small {
    display: block;

    color: #929292;

    font-size: 8px;
    line-height: 1.4;
}


/* =========================================
   VIEW ALL
========================================= */

.mega-view-all {
    align-items: center !important;

    margin-top: 8px;

    padding: 12px 8px !important;

    border-top: 1px solid rgba(6,43,89,0.08);

    color: var(--gold) !important;

    font-size: 9px;

    font-weight: 700;
}

.mega-view-all i {
    margin-left: auto;

    transition: transform 0.3s ease;
}

.mega-view-all:hover i {
    transform: translateX(4px);
}


/* =========================================
   HEADER CTA
========================================= */

.header-action {
    flex-shrink: 0;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 17px;

    color: #fff;

    background: var(--deep-blue);

    border: 1px solid var(--deep-blue);

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.header-cta i {
    color: var(--gold-light);

    transition: transform 0.3s ease;
}

.header-cta:hover {
    background: var(--primary-blue);

    border-color: var(--primary-blue);

    transform: translateY(-1px);
}

.header-cta:hover i {
    transform: translateX(4px);
}


/* =========================================
   MOBILE BUTTON
========================================= */

.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid rgba(6,43,89,0.12);
    background: #fff;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 19px;
    height: 1.5px;

    background: var(--deep-blue);

    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform:
        translateY(6.5px)
        rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-6.5px)
        rotate(-45deg);
}


/* =========================================
   MOBILE NAV
========================================= */

.mobile-nav {
    display: none;
}


/* =========================================
   TABLET / SMALL DESKTOP
========================================= */

@media (max-width: 1150px) {

    .header-container {
        width: 94%;
        gap: 15px;
    }

    .main-nav {
        gap: 0;
    }

    .main-nav > a,
    .dropdown-toggle {
        padding-left: 7px;
        padding-right: 7px;

        font-size: 10px;
    }

    .header-cta {
        padding: 12px 13px;
        font-size: 9px;
    }

    .site-logo img {
        width: 115px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 950px) {

    .header-container {
        height: 78px;
    }

    .main-nav,
    .header-action {
        display: none;
    }

    .site-logo img {
        width: 110px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #fff;

        border-top: 1px solid rgba(6,43,89,0.06);

        box-shadow:
            0 20px 35px rgba(6,43,89,0.1);

        max-height: 0;
        overflow: hidden;

        opacity: 0;
        visibility: hidden;

        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .mobile-nav.active {
        max-height: calc(100vh - 78px);

        opacity: 1;
        visibility: visible;

        overflow-y: auto;
    }

    .mobile-nav-inner {
        padding: 15px 20px 25px;
    }

    .mobile-nav-inner > a,
    .mobile-services-toggle {
        width: 100%;

        min-height: 48px;

        display: flex;
        align-items: center;

        gap: 13px;

        padding: 0 5px;

        color: var(--deep-blue);

        background: transparent;
        border: 0;

        border-bottom: 1px solid rgba(6,43,89,0.07);

        font-family: 'DM Sans', sans-serif;

        font-size: 12px;
        font-weight: 600;

        text-decoration: none;

        cursor: pointer;
    }

    .mobile-nav-inner > a i,
    .mobile-services-toggle i:first-child {
        width: 25px;

        color: var(--gold);

        text-align: center;
    }

    .mobile-services-toggle {
        justify-content: space-between;
    }

    .mobile-services-toggle > span {
        display: flex;
        align-items: center;
        gap: 13px;
    }

    .mobile-services-toggle > i {
        color: #999;

        font-size: 9px;

        transition: transform 0.3s ease;
    }

    .mobile-services.open
    .mobile-services-toggle > i {
        transform: rotate(180deg);
    }

    .mobile-services-menu {
        max-height: 0;

        overflow: hidden;

        padding-left: 38px;

        transition:
            max-height 0.4s ease;
    }

    .mobile-services.open
    .mobile-services-menu {
        max-height: 500px;
    }

    .mobile-services-menu a {
        display: block;

        padding: 10px 5px;

        color: #707780;

        border-bottom: 1px solid rgba(6,43,89,0.05);

        font-size: 11px;

        text-decoration: none;
    }

    .mobile-services-menu a:hover {
        color: var(--primary-blue);
    }

    .mobile-cta {
        margin-top: 17px;

        justify-content: center !important;

        min-height: 50px !important;

        color: #fff !important;

        background: var(--deep-blue);

        border: 0 !important;
    }

    .mobile-cta i {
        width: auto !important;

        color: var(--gold-light) !important;
    }

    .mobile-call {
        justify-content: center;

        margin-top: 9px;

        border: 0 !important;

        color: var(--gold) !important;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .site-logo img {
        width: 100px;
    }

    .mobile-menu-toggle {
        width: 39px;
        height: 39px;
    }

}

/* =========================================
   HEADER SIZE REFINEMENT
========================================= */

.header-container {
    width: min(1280px, 92%);
    height: 84px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}


/* =========================================
   SMALL PREMIUM LOGO
========================================= */

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    width: 108px;
    height: auto;
    display: block;

    transition: width 0.3s ease;
}

.site-header.scrolled .site-logo img {
    width: 100px;
}


/* =========================================
   BIGGER NAVIGATION FONT
========================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;
    margin-left: auto;
}

.main-nav > a,
.dropdown-toggle {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 30px 11px;

    color: #343d4b;
    background: transparent;
    border: 0;

    font-family: 'DM Sans', sans-serif;

    /* BIGGER MENU FONT */
    font-size: 13px;
    font-weight: 600;

    line-height: 1;

    text-decoration: none;
    white-space: nowrap;

    cursor: pointer;

    transition: color 0.3s ease;
}


/* =========================================
   MENU UNDERLINE
========================================= */

.main-nav > a::after,
.dropdown-toggle::after {
    content: "";

    position: absolute;

    left: 11px;
    right: 11px;
    bottom: 19px;

    height: 2px;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown:hover .dropdown-toggle,
.nav-dropdown.active-parent .dropdown-toggle {
    color: var(--primary-blue);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown:hover .dropdown-toggle::after,
.nav-dropdown.active-parent .dropdown-toggle::after {
    transform: scaleX(1);
}


/* =========================================
   SERVICES ARROW
========================================= */

.dropdown-toggle i {
    color: var(--gold);
    font-size: 9px;

    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}


/* =========================================
   HEADER CTA
========================================= */

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 20px;

    color: #fff;
    background: var(--deep-blue);

    border: 1px solid var(--deep-blue);

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;

    text-decoration: none;

    transition: all 0.3s ease;
}

.header-cta i {
    color: var(--gold-light);
    font-size: 11px;
}

.header-cta:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-1px);
}


/* =========================================
   DESKTOP SPACING
========================================= */

.header-action {
    flex-shrink: 0;
    margin-left: 8px;
}

@media (max-width: 1150px) {

    .header-container {
        width: 94%;
        gap: 18px;
    }

    .site-logo img {
        width: 100px;
    }

    .main-nav {
        gap: 1px;
    }

    .main-nav > a,
    .dropdown-toggle {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 12px;
    }

    .header-cta {
        padding: 13px 15px;
        font-size: 11px;
    }
}
/* =========================================
   MOBILE HEADER
========================================= */

@media (max-width: 950px) {

    .site-header {
        background: #fff;
    }

    .header-container {
        width: 92%;
        height: 76px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Small logo */
    .site-logo img {
        width: 98px;
        height: auto;
    }

    .site-header.scrolled .site-logo img {
        width: 92px;
    }

    /* Hide desktop navigation */
    .main-nav,
    .header-action {
        display: none;
    }

    /* Hamburger */
    .mobile-menu-toggle {
        display: flex;

        width: 42px;
        height: 42px;

        align-items: center;
        justify-content: center;
        flex-direction: column;

        gap: 5px;

        padding: 0;

        background: #fff;

        border: 1px solid rgba(6, 43, 89, 0.12);

        cursor: pointer;

        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        border-color: var(--gold);
    }

    .mobile-menu-toggle span {
        display: block;

        width: 19px;
        height: 2px;

        background: var(--deep-blue);

        transition: all 0.3s ease;
    }

    /* Hamburger animation */

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* =====================================
       MOBILE NAV PANEL
    ====================================== */

    .mobile-nav {
        display: block;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #fff;

        border-top: 1px solid rgba(6, 43, 89, 0.07);

        box-shadow:
            0 18px 40px rgba(6, 43, 89, 0.12);

        max-height: 0;

        overflow: hidden;

        opacity: 0;
        visibility: hidden;

        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .mobile-nav.active {
        max-height: calc(100vh - 76px);

        opacity: 1;
        visibility: visible;

        overflow-y: auto;
    }


    .mobile-nav-inner {
        width: 92%;

        margin: 0 auto;

        padding: 10px 0 20px;
    }


    /* =====================================
       MOBILE MENU ITEMS
    ====================================== */

    .mobile-nav-inner > a,
    .mobile-services-toggle {

        width: 100%;

        min-height: 50px;

        display: flex;
        align-items: center;

        padding: 0 4px;

        gap: 13px;

        background: transparent;

        border: 0;

        border-bottom: 1px solid rgba(6, 43, 89, 0.07);

        color: var(--deep-blue);

        font-family: 'DM Sans', sans-serif;

        font-size: 14px;
        font-weight: 600;

        text-decoration: none;

        text-align: left;

        cursor: pointer;

        transition: color 0.25s ease;
    }


    .mobile-nav-inner > a:hover,
    .mobile-services-toggle:hover {
        color: var(--primary-blue);
    }


    .mobile-nav-inner > a i,
    .mobile-services-toggle > span > i {
        width: 25px;

        color: var(--gold);

        font-size: 14px;

        text-align: center;
    }


    /* =====================================
       MOBILE SERVICES
    ====================================== */

    .mobile-services-toggle {
        justify-content: space-between;
    }

    .mobile-services-toggle > span {
        display: flex;
        align-items: center;
        gap: 13px;
    }

    .mobile-services-toggle > i {
        color: #999;

        font-size: 9px;

        transition: transform 0.3s ease;
    }

    .mobile-services.open
    .mobile-services-toggle > i {
        transform: rotate(180deg);
    }


    /* =====================================
       SERVICES SUB MENU
    ====================================== */

    .mobile-services-menu {
        max-height: 0;

        overflow: hidden;

        padding-left: 42px;

        background: #faf9f6;

        transition:
            max-height 0.4s ease;
    }

    .mobile-services.open
    .mobile-services-menu {
        max-height: 600px;
    }

    .mobile-services-menu a {
        display: block;

        padding: 12px 8px;

        color: #626b76;

        border-bottom: 1px solid rgba(6, 43, 89, 0.06);

        font-size: 12px;
        font-weight: 500;

        text-decoration: none;

        transition:
            color 0.25s ease,
            padding-left 0.25s ease;
    }

    .mobile-services-menu a:hover {
        color: var(--primary-blue);

        padding-left: 12px;
    }


    /* =====================================
       MOBILE CTA
    ====================================== */

    .mobile-cta {
        justify-content: center !important;

        min-height: 52px !important;

        margin-top: 18px;

        background: var(--deep-blue) !important;

        border: 0 !important;

        color: #fff !important;

        font-size: 13px !important;

        font-weight: 700 !important;

        gap: 12px !important;
    }

    .mobile-cta i {
        width: auto !important;

        color: var(--gold-light) !important;

        transition: transform 0.3s ease;
    }

    .mobile-cta:hover i {
        transform: translateX(4px);
    }


    /* =====================================
       MOBILE PHONE
    ====================================== */

    .mobile-call {
        justify-content: center;

        min-height: 45px !important;

        border: 0 !important;

        color: var(--gold) !important;

        font-size: 12px !important;

        font-weight: 700 !important;
    }

    .mobile-call i {
        width: auto !important;

        color: var(--gold) !important;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .header-container {
        width: 90%;
        height: 72px;
    }

    .site-logo img {
        width: 90px;
    }

    .site-header.scrolled .site-logo img {
        width: 86px;
    }

    .mobile-menu-toggle {
        width: 39px;
        height: 39px;
    }

    .mobile-menu-toggle span {
        width: 18px;
    }

    .mobile-nav.active {
        max-height: calc(100vh - 72px);
    }

    .mobile-nav-inner > a,
    .mobile-services-toggle {
        min-height: 48px;
        font-size: 13px;
    }

    .mobile-services-menu {
        padding-left: 38px;
    }

    .mobile-services-menu a {
        font-size: 11px;
        padding: 11px 7px;
    }

    .mobile-cta {
        font-size: 12px !important;
    }

}
/* =========================================
   PREMIUM GALLERY
========================================= */

.gallery-section {
    position: relative;
    overflow: hidden;

    padding: 115px 0 105px;

    background: #fff;
}

.gallery-section::before {
    content: "PROJECTS";

    position: absolute;

    top: 50px;
    right: -20px;

    color: rgba(6,43,89,0.025);

    font-family: 'Playfair Display', serif;

    font-size: 150px;
    font-weight: 700;

    pointer-events: none;
}

.gallery-container {
    width: min(1180px, 92%);
    margin: auto;

    position: relative;
    z-index: 2;
}


/* =========================================
   HEADER
========================================= */

.gallery-header {
    display: grid;
    grid-template-columns: 1fr 0.65fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 38px;
}

.gallery-heading h2 {
    margin: 0;

    color: var(--deep-blue);

    font-family: 'Playfair Display', serif;

    font-size: clamp(40px, 4.3vw, 58px);

    line-height: 1.1;

    font-weight: 600;

    letter-spacing: -1px;
}

.gallery-heading h2 span {
    display: block;
    color: var(--primary-blue);
}

.gallery-intro p {
    margin: 0 0 18px;

    color: #737983;

    font-size: 14px;

    line-height: 1.8;
}

.gallery-view-all {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--deep-blue);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    text-decoration: none;
}

.gallery-view-all i {
    color: var(--gold);

    transition: transform .3s ease;
}

.gallery-view-all:hover i {
    transform: translateX(5px);
}


/* =========================================
   FILTER
========================================= */

.gallery-filters {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 28px;
}

.gallery-filter {
    padding: 10px 18px;

    border: 1px solid rgba(6,43,89,0.12);

    background: transparent;

    color: #707780;

    font-family: 'DM Sans', sans-serif;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .7px;

    cursor: pointer;

    transition: all .3s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--deep-blue);

    border-color: var(--deep-blue);

    color: #fff;
}


/* =========================================
   GALLERY GRID
========================================= */

.gallery-grid {
    display: grid;

    grid-template-columns:
        1.35fr
        .75fr
        .9fr;

    grid-template-rows:
        270px
        270px;

    gap: 15px;
}


/* =========================================
   ITEMS
========================================= */

.gallery-item {
    position: relative;

    overflow: hidden;

    background: #ddd;

    cursor: pointer;

    opacity: 1;

    transform: scale(1);

    transition:
        opacity .45s ease,
        transform .45s ease;
}

.gallery-item.hidden {
    opacity: 0;

    transform: scale(.94);

    pointer-events: none;

    position: absolute;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .9s cubic-bezier(.2,.7,.2,1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* FEATURED */

.gallery-featured {
    grid-row: span 2;
}


/* =========================================
   OVERLAY
========================================= */

.gallery-item-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding: 25px;

    background:
        linear-gradient(
            180deg,
            rgba(6,43,89,0) 35%,
            rgba(6,43,89,.82) 100%
        );

    opacity: 0;

    transition: opacity .45s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}


/* =========================================
   PROJECT INFO
========================================= */

.gallery-project-info {
    transform: translateY(20px);

    transition:
        transform .5s cubic-bezier(.2,.7,.2,1);
}

.gallery-item:hover .gallery-project-info {
    transform: translateY(0);
}

.gallery-project-info span {
    display: block;

    margin-bottom: 7px;

    color: var(--gold-light);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.gallery-project-info h3 {
    margin: 0 0 4px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 19px;

    font-weight: 500;
}

.gallery-project-info p {
    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 9px;
}


/* =========================================
   EXPAND BUTTON
========================================= */

.gallery-expand {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border: 1px solid rgba(255,255,255,.4);

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(5px);

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    transform:
        translateY(20px)
        rotate(-10deg);

    transition:
        transform .5s ease,
        background .3s ease;
}

.gallery-item:hover .gallery-expand {
    transform:
        translateY(0)
        rotate(0);
}

.gallery-expand:hover {
    background: var(--gold);

    border-color: var(--gold);
}


/* =========================================
   BOTTOM
========================================= */

.gallery-bottom {
    margin-top: 30px;

    padding-top: 22px;

    border-top: 1px solid rgba(6,43,89,.08);

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.gallery-bottom span {
    color: #999;

    font-family: 'Playfair Display', serif;

    font-size: 15px;

    font-style: italic;
}

.gallery-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    text-decoration: none;
}

.gallery-bottom a i {
    transition: transform .3s ease;
}

.gallery-bottom a:hover i {
    transform: translateX(5px);
}


/* =========================================
   LIGHTBOX
========================================= */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background: rgba(3,15,30,.94);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.gallery-lightbox.active {
    opacity: 1;

    visibility: visible;
}

.gallery-lightbox img {
    max-width: 90vw;

    max-height: 88vh;

    object-fit: contain;

    box-shadow:
        0 30px 100px rgba(0,0,0,.4);

    transform: scale(.92);

    transition: transform .45s ease;
}

.gallery-lightbox.active img {
    transform: scale(1);
}

.gallery-lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.08);

    color: #fff;

    cursor: pointer;

    font-size: 18px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .gallery-header {
        grid-template-columns: 1fr .8fr;

        gap: 35px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            300px
            300px
            300px;
    }

    .gallery-featured {
        grid-row: span 2;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .gallery-section {
        padding: 75px 0;
    }

    .gallery-section::before {
        font-size: 80px;

        top: 30px;
    }

    .gallery-header {
        display: block;

        text-align: center;

        margin-bottom: 30px;
    }

    .gallery-heading .section-eyebrow {
        justify-content: center;
    }

    .gallery-heading h2 {
        font-size: 39px;
    }

    .gallery-intro {
        margin-top: 20px;
    }

    .gallery-intro p {
        font-size: 13px;
    }

    .gallery-filters {
        justify-content: flex-start;

        overflow-x: auto;

        padding-bottom: 7px;

        margin-bottom: 20px;

        scrollbar-width: none;
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .gallery-filter {
        flex-shrink: 0;

        padding: 9px 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-template-rows: none;

        gap: 14px;
    }

    .gallery-featured {
        grid-row: auto;
    }

    .gallery-item,
    .gallery-featured {
        height: 300px;
    }

    /* Always show a subtle overlay on mobile */
    .gallery-item-overlay {
        opacity: 1;

        padding: 18px;

        background:
            linear-gradient(
                180deg,
                rgba(6,43,89,0) 30%,
                rgba(6,43,89,.78) 100%
            );
    }

    .gallery-project-info {
        transform: none;
    }

    .gallery-expand {
        transform: none;
    }

    .gallery-bottom {
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .gallery-heading h2 {
        font-size: 34px;
    }

    .gallery-item,
    .gallery-featured {
        height: 260px;
    }

    .gallery-project-info h3 {
        font-size: 17px;
    }

}

/* =========================================
   WHY CHOOSE US
========================================= */

.why-home-section {
    position: relative;

    padding: 115px 0;

    background: var(--off-white);

    overflow: hidden;
}

.why-home-section::before {
    content: "WHY US";

    position: absolute;

    top: 35px;
    left: -20px;

    color: rgba(6,43,89,0.025);

    font-family: 'Playfair Display', serif;

    font-size: 150px;
    font-weight: 700;

    pointer-events: none;
}

.why-home-container {
    width: min(1180px, 92%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 85px;

    align-items: center;

    position: relative;

    z-index: 2;
}


/* =========================================
   VISUAL
========================================= */

.why-home-visual {
    position: relative;

    min-height: 570px;
}

.why-main-image {
    position: absolute;

    top: 0;
    left: 25px;

    width: calc(100% - 25px);

    height: 520px;

    overflow: hidden;

    background: #ddd;
}

.why-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .8s ease;
}

.why-main-image:hover img {
    transform: scale(1.04);
}


/* =========================================
   IMAGE ACCENT
========================================= */

.why-image-accent {
    position: absolute;

    top: -15px;
    left: 10px;

    width: 100%;
    height: 520px;

    border: 1px solid var(--gold);

    pointer-events: none;
}


/* =========================================
   EXPERIENCE CARD
========================================= */

.why-experience-card {
    position: absolute;

    left: -5px;
    bottom: 35px;

    z-index: 3;

    width: 150px;
    height: 150px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: var(--deep-blue);

    border: 6px solid var(--off-white);

    box-shadow:
        0 15px 40px rgba(6,43,89,.18);
}

.why-experience-card strong {
    color: var(--gold-light);

    font-family: 'Playfair Display', serif;

    font-size: 48px;

    line-height: 1;
}

.why-experience-card span {
    margin-top: 7px;

    color: rgba(255,255,255,.7);

    font-size: 8px;

    font-weight: 700;

    line-height: 1.5;

    letter-spacing: 1.5px;

    text-align: center;
}


/* =========================================
   QUOTE CARD
========================================= */

.why-quote-card {
    position: absolute;

    right: -20px;
    bottom: 0;

    z-index: 4;

    width: 205px;

    padding: 19px 20px;

    background: #fff;

    box-shadow:
        0 12px 35px rgba(6,43,89,.1);
}

.why-quote-card i {
    color: var(--gold);

    font-size: 17px;

    margin-bottom: 8px;
}

.why-quote-card p {
    margin: 0;

    color: #5e6570;

    font-family: 'Playfair Display', serif;

    font-size: 12px;

    line-height: 1.6;

    font-style: italic;
}


/* =========================================
   CONTENT
========================================= */

.why-home-content {
    position: relative;
}

.why-home-content h2 {
    margin: 0;

    color: var(--deep-blue);

    font-family: 'Playfair Display', serif;

    font-size: clamp(40px, 4.1vw, 57px);

    line-height: 1.1;

    font-weight: 600;

    letter-spacing: -1px;
}

.why-home-content h2 span {
    display: block;

    color: var(--primary-blue);
}

.why-home-intro {
    max-width: 620px;

    margin: 24px 0 35px;

    color: #707780;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   FEATURES
========================================= */

.why-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px 28px;
}

.why-feature {
    position: relative;

    display: grid;

    grid-template-columns: 34px 45px 1fr;

    gap: 12px;

    align-items: start;
}

.why-feature-number {
    color: rgba(6,43,89,.2);

    font-family: 'Playfair Display', serif;

    font-size: 12px;

    font-weight: 600;

    padding-top: 7px;
}

.why-feature-icon {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(201,149,46,.09);

    color: var(--gold);

    font-size: 15px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.why-feature:hover .why-feature-icon {
    background: var(--gold);

    color: #fff;

    transform: translateY(-3px);
}

.why-feature-content h3 {
    margin: 2px 0 6px;

    color: var(--deep-blue);

    font-size: 13px;

    font-weight: 700;
}

.why-feature-content p {
    margin: 0;

    color: #80858c;

    font-size: 10px;

    line-height: 1.65;
}


/* =========================================
   CTA
========================================= */

.why-home-cta {
    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid rgba(6,43,89,.1);
}

.why-home-cta a {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    color: var(--deep-blue);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    text-decoration: none;
}

.why-home-cta a i {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--gold);

    color: #fff;

    transition:
        transform .3s ease,
        background .3s ease;
}

.why-home-cta a:hover i {
    background: var(--primary-blue);

    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .why-home-container {
        gap: 45px;
    }

    .why-home-content h2 {
        font-size: 43px;
    }

    .why-features {
        gap: 22px 15px;
    }

    .why-feature {
        grid-template-columns: 25px 40px 1fr;

        gap: 8px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .why-home-section {
        padding: 75px 0;
    }

    .why-home-section::before {
        font-size: 80px;
    }

    .why-home-container {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .why-home-content {
        order: 1;

        text-align: center;
    }

    .why-home-content .section-eyebrow {
        justify-content: center;
    }

    .why-home-content h2 {
        font-size: 39px;
    }

    .why-home-intro {
        margin-left: auto;
        margin-right: auto;

        font-size: 13px;
    }

    .why-home-visual {
        order: 2;

        min-height: 480px;

        width: 90%;

        margin: 0 auto;
    }

    .why-main-image {
        left: 15px;

        width: calc(100% - 15px);

        height: 420px;
    }

    .why-image-accent {
        left: 0;

        height: 420px;
    }

    .why-experience-card {
        left: -5px;

        width: 120px;
        height: 120px;
    }

    .why-experience-card strong {
        font-size: 38px;
    }

    .why-quote-card {
        right: -10px;

        width: 175px;
    }

    .why-features {
        grid-template-columns: 1fr;

        text-align: left;

        max-width: 520px;

        margin: 0 auto;
    }

    .why-home-cta {
        text-align: center;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .why-home-content h2 {
        font-size: 34px;
    }

    .why-home-visual {
        min-height: 400px;
    }

    .why-main-image {
        height: 350px;
    }

    .why-image-accent {
        height: 350px;
    }

    .why-experience-card {
        width: 105px;
        height: 105px;
    }

    .why-experience-card strong {
        font-size: 32px;
    }

    .why-experience-card span {
        font-size: 7px;
    }

    .why-quote-card {
        width: 150px;
        padding: 14px;
    }

    .why-quote-card p {
        font-size: 10px;
    }

}

/* =========================================
   OUR PROCESS
========================================= */

.process-home-section {
    position: relative;
    padding: 115px 0 105px;
    background: #ffffff;
    overflow: hidden;
}

.process-bg-text {
    position: absolute;
    top: 25px;
    right: -20px;

    font-family: 'Playfair Display', serif;
    font-size: 155px;
    font-weight: 700;

    color: rgba(6,43,89,.025);

    pointer-events: none;
    user-select: none;
}

.process-home-container {
    width: min(1180px, 92%);
    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* =========================================
   HEADING
========================================= */

.process-home-heading {
    display: grid;
    grid-template-columns: 1fr 420px;

    gap: 80px;

    align-items: end;

    margin-bottom: 70px;
}

.process-home-heading h2 {
    margin: 0;

    color: var(--deep-blue);

    font-family: 'Playfair Display', serif;

    font-size: clamp(40px, 4.2vw, 58px);

    line-height: 1.08;
    font-weight: 600;

    letter-spacing: -1px;
}

.process-home-heading h2 span {
    display: block;
    color: var(--primary-blue);
}

.process-home-heading > p {
    margin: 0;

    color: #777f88;

    font-size: 13px;
    line-height: 1.85;

    padding-bottom: 5px;
}


/* =========================================
   TIMELINE
========================================= */

.process-timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 0;
}


/* ANIMATED GOLD LINE */

.process-timeline::before {
    content: "";

    position: absolute;

    top: 30px;
    left: 8%;
    right: 8%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        var(--gold),
        transparent
    );

    transform: scaleX(0);
    transform-origin: left;

    animation: processLineReveal 1.6s ease forwards;

    animation-delay: .3s;
}

@keyframes processLineReveal {

    to {
        transform: scaleX(1);
    }

}


/* =========================================
   STEP
========================================= */

.process-step {
    position: relative;

    padding: 0 18px;

    opacity: 0;

    transform: translateY(35px);

    animation: processStepReveal .7s ease forwards;
}

.process-step:nth-child(1) {
    animation-delay: .45s;
}

.process-step:nth-child(2) {
    animation-delay: .65s;
}

.process-step:nth-child(3) {
    animation-delay: .85s;
}

.process-step:nth-child(4) {
    animation-delay: 1.05s;
}

.process-step:nth-child(5) {
    animation-delay: 1.25s;
}

@keyframes processStepReveal {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TOP
========================================= */

.process-step-top {
    position: relative;

    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.process-number {
    position: absolute;

    left: 0;
    top: 4px;

    font-family: 'Playfair Display', serif;

    font-size: 11px;
    font-weight: 600;

    color: rgba(6,43,89,.2);
}

.process-icon {
    position: relative;
    z-index: 3;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid rgba(201,149,46,.55);

    border-radius: 50%;

    color: var(--gold);

    font-size: 19px;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.process-step:hover .process-icon {
    background: var(--gold);

    color: #fff;

    transform: translateY(-6px);

    box-shadow:
        0 12px 25px rgba(201,149,46,.25);
}


/* =========================================
   STEP LINE
========================================= */

.process-step-line {
    width: 100%;
    height: 1px;

    background: rgba(6,43,89,.08);

    margin-top: 18px;
}


/* =========================================
   CONTENT
========================================= */

.process-step-content {
    padding-top: 22px;
}

.process-step-content > span {
    color: var(--gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.process-step-content h3 {
    margin: 7px 0 9px;

    color: var(--deep-blue);

    font-size: 15px;

    font-weight: 700;
}

.process-step-content p {
    margin: 0;

    color: #858b92;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================
   BOTTOM CTA
========================================= */

.process-home-bottom {
    margin-top: 65px;

    display: flex;
    align-items: center;

    gap: 28px;
}

.process-bottom-line {
    width: 80px;
    height: 1px;

    background: var(--gold);
}

.process-home-bottom p {
    margin: 0;

    color: #777f88;

    font-size: 11px;

    line-height: 1.6;
}

.process-home-bottom p strong {
    color: var(--deep-blue);
}

.process-home-bottom a {
    margin-left: auto;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    padding: 13px 20px;

    background: var(--deep-blue);

    color: #fff;

    text-decoration: none;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    transition:
        background .3s ease,
        transform .3s ease;
}

.process-home-bottom a i {
    color: var(--gold-light);
}

.process-home-bottom a:hover {
    background: var(--primary-blue);

    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .process-home-heading {
        grid-template-columns: 1fr 330px;
        gap: 40px;
    }

    .process-home-heading h2 {
        font-size: 44px;
    }

    .process-step {
        padding: 0 10px;
    }

    .process-icon {
        width: 52px;
        height: 52px;
        font-size: 16px;
    }

    .process-step-content h3 {
        font-size: 13px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .process-home-section {
        padding: 80px 0;
    }

    .process-bg-text {
        font-size: 85px;
        top: 35px;
    }

    .process-home-heading {
        display: block;

        text-align: center;

        margin-bottom: 55px;
    }

    .process-home-heading .section-eyebrow {
        justify-content: center;
    }

    .process-home-heading h2 {
        font-size: 38px;
    }

    .process-home-heading > p {
        max-width: 520px;

        margin: 22px auto 0;

        font-size: 12px;
    }


    /* VERTICAL TIMELINE */

    .process-timeline {
        display: block;

        padding-left: 15px;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 44px;
        right: auto;

        width: 1px;
        height: auto;

        transform: scaleY(0);
        transform-origin: top;

        animation: processVerticalLine 1.5s ease forwards;
    }

    @keyframes processVerticalLine {

        to {
            transform: scaleY(1);
        }

    }

    .process-step {
        display: grid;

        grid-template-columns: 60px 1fr;

        gap: 25px;

        padding: 0;

        margin-bottom: 42px;

        transform: translateX(-20px);
    }

    .process-step:nth-child(1) {
        animation-delay: .3s;
    }

    .process-step:nth-child(2) {
        animation-delay: .5s;
    }

    .process-step:nth-child(3) {
        animation-delay: .7s;
    }

    .process-step:nth-child(4) {
        animation-delay: .9s;
    }

    .process-step:nth-child(5) {
        animation-delay: 1.1s;
    }

    .process-step-top {
        height: 60px;
    }

    .process-number {
        display: none;
    }

    .process-icon {
        width: 52px;
        height: 52px;

        background: #fff;
    }

    .process-step-line {
        display: none;
    }

    .process-step-content {
        padding: 4px 0 0;
    }

    .process-step-content h3 {
        font-size: 15px;
    }

    .process-step-content p {
        font-size: 11px;

        max-width: 480px;
    }


    /* CTA */

    .process-home-bottom {
        margin-top: 20px;

        flex-wrap: wrap;

        justify-content: center;

        text-align: center;
    }

    .process-bottom-line {
        display: none;
    }

    .process-home-bottom p {
        width: 100%;
    }

    .process-home-bottom a {
        margin-left: 0;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .process-home-heading h2 {
        font-size: 33px;
    }

    .process-step {
        grid-template-columns: 52px 1fr;

        gap: 20px;
    }

    .process-timeline::before {
        left: 40px;
    }

    .process-icon {
        width: 48px;
        height: 48px;

        font-size: 15px;
    }

}

