/* =========================================================
   CHARIOT FINANCIAL SERVICES
   MAIN STYLESHEET
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {

    --navy: #101d2f;
    --navy-deep: #0b1524;
    --navy-soft: #18283d;

    --gold: #b59a62;
    --gold-light: #d0b77b;
    --gold-soft: #eee4cf;

    --white: #ffffff;
    --warm-white: #faf9f6;
    --stone: #f2f0eb;
    --stone-dark: #e5e1d9;

    --text: #26313d;
    --text-light: #68727d;
    --text-muted: #87909a;

    --border: rgba(16, 29, 47, 0.10);
    --border-dark: rgba(255, 255, 255, 0.14);

    --shadow-soft:
        0 12px 35px rgba(16, 29, 47, 0.07);

    --shadow-card:
        0 18px 45px rgba(16, 29, 47, 0.09);

    --container-width: 1180px;

    --transition:
        all 0.25s ease;

}


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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {

    background: var(--warm-white);

    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;

    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    border: 0;
}

::selection {
    background: var(--gold);
    color: var(--white);
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {

    outline:
        3px solid var(--gold);

    outline-offset: 3px;

}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {

    width: min(
        calc(100% - 48px),
        var(--container-width)
    );

    margin-left: auto;
    margin-right: auto;

}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4 {

    color: var(--navy);

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

    font-weight: 500;

}

h1 {
    letter-spacing: -0.025em;
}

h2 {
    letter-spacing: -0.018em;
}

p {
    color: var(--text-light);
}

.section-eyebrow {

    display: inline-block;

    margin-bottom: 13px;

    color: var(--gold);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.17em;

    line-height: 1.4;

    text-transform: uppercase;

}

.section-heading {

    max-width: 760px;

    margin-bottom: 55px;

}

.section-heading h2 {

    margin-bottom: 17px;

    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );

    line-height: 1.15;

}

.section-heading p {

    max-width: 700px;

    font-size: 1rem;

}


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

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(
            250,
            249,
            246,
            0.96
        );

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

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

}

.nav-container {

    min-height: 92px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}


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

.logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}

.site-logo {

    width: 285px;

    max-width: 285px;

    height: auto;

    max-height: 102px;

    object-fit: contain;

}


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

.main-nav {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 28px;

}

.main-nav a {

    position: relative;

    color: var(--navy);

    font-size: 0.86rem;

    font-weight: 600;

    white-space: nowrap;

    transition: var(--transition);

}

.main-nav a:not(.nav-cta)::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 1px;

    background: var(--gold);

    transition: width 0.25s ease;

}

.main-nav a:not(.nav-cta):hover {

    color: var(--gold);

}

.main-nav a:not(.nav-cta):hover::after {

    width: 100%;

}

.main-nav .nav-cta {

    padding:
        11px
        19px;

    background: var(--navy);

    color: var(--white);

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

    transition: var(--transition);

}

.main-nav .nav-cta:hover {

    background: var(--gold);

    border-color: var(--gold);

}


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

.menu-toggle {

    display: none;

    width: 46px;

    height: 46px;

    align-items: center;

    justify-content: center;

    background: transparent;

    cursor: pointer;

}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {

    display: block;

    width: 24px;

    height: 2px;

    background: var(--navy);

    transition: var(--transition);

}

.menu-toggle span {

    position: relative;

}

.menu-toggle span::before,
.menu-toggle span::after {

    content: "";

    position: absolute;

    left: 0;

}

.menu-toggle span::before {
    top: -7px;
}

.menu-toggle span::after {
    top: 7px;
}


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

.hero {

    position: relative;

    overflow: hidden;

    padding:
        100px
        0
        95px;

    background: var(--warm-white);

}

.hero::before {

    content: "";

    position: absolute;

    top: -180px;

    right: -180px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(181, 154, 98, 0.10),
            rgba(181, 154, 98, 0)
        );

    pointer-events: none;

}

.hero-container {

    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, 0.75fr);

    align-items: center;

    gap: 75px;

}

.hero-content {

    max-width: 760px;

}

.hero-eyebrow {

    display: inline-block;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 0.74rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

}

.hero h1 {

    max-width: 790px;

    margin-bottom: 25px;

    font-size:
        clamp(
            2.8rem,
            5.2vw,
            4.65rem
        );

    line-height: 1.03;

}

.hero-content > p {

    max-width: 680px;

    margin-bottom: 32px;

    font-size: 1.12rem;

    line-height: 1.75;

}


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

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 40px;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding:
        13px
        22px;

    border:
        1px solid transparent;

    font-size: 0.86rem;

    font-weight: 700;

    line-height: 1.2;

    cursor: pointer;

    transition: var(--transition);

}

.btn-primary {

    background: var(--navy);

    border-color: var(--navy);

    color: var(--white);

}

.btn-primary:hover {

    background: var(--gold);

    border-color: var(--gold);

}

.btn-secondary {

    background: transparent;

    border-color:
        rgba(
            16,
            29,
            47,
            0.25
        );

    color: var(--navy);

}

.btn-secondary:hover {

    background: var(--navy);

    border-color: var(--navy);

    color: var(--white);

}


/* =========================================================
   HERO CREDENTIALS
   ========================================================= */

.hero-credentials {

    display: grid;

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

    gap: 18px;

    padding-top: 28px;

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

}

.hero-credential {

    color: var(--text-light);

    font-size: 0.77rem;

    line-height: 1.5;

}

.hero-credential strong {

    display: block;

    margin-bottom: 4px;

    color: var(--navy);

    font-size: 0.79rem;

}


/* =========================================================
   HERO SIDE CARD
   ========================================================= */

.hero-side {

    display: flex;

    justify-content: flex-end;

}

.hero-card {

    width: 100%;

    max-width: 405px;

    padding:
        48px
        42px;

    background: var(--navy);

    box-shadow: var(--shadow-card);

}

.hero-card-label {

    display: block;

    margin-bottom: 28px;

    color: var(--gold-light);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;

}

.hero-card h2 {

    margin-bottom: 25px;

    color: var(--white);

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

    line-height: 1.08;

}

.hero-card p {

    color:
        rgba(
            255,
            255,
            255,
            0.68
        );

    font-size: 0.93rem;

    line-height: 1.75;

}


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

.about {

    padding:
        105px
        0;

    background: var(--white);

}

.about-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, 0.75fr);

    gap: 80px;

    align-items: center;

}

.about-content h2 {

    max-width: 720px;

    margin-bottom: 25px;

    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );

    line-height: 1.15;

}

.about-content p {

    max-width: 720px;

    margin-bottom: 17px;

}

.about-content p:last-child {

    margin-bottom: 0;

}

.about-highlight {

    padding:
        42px;

    background: var(--stone);

    border-left:
        3px solid var(--gold);

}

.about-highlight h3 {

    margin-bottom: 15px;

    font-size: 1.55rem;

}

.about-highlight p {

    font-size: 0.94rem;

}


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

.services {

    padding:
        110px
        0;

    background: var(--stone);

}

.service-group {

    margin-bottom: 55px;

}

.service-group:last-child {

    margin-bottom: 0;

}

.service-group-heading {

    margin-bottom: 23px;

}

.service-group-heading h3 {

    margin-bottom: 7px;

    color: var(--navy);

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

    font-size: 1.7rem;

    font-weight: 500;

}

.service-group-heading p {

    max-width: 720px;

    color: var(--text-light);

}

.service-group-grid {

    display: grid;

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

    gap: 22px;

}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-card {

    min-height: 190px;

    padding:
        30px
        28px;

    background: var(--white);

    border:
        1px solid rgba(
            16,
            29,
            47,
            0.07
        );

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;

}

.service-card:hover {

    transform: translateY(-4px);

    border-color:
        rgba(
            181,
            154,
            98,
            0.35
        );

    box-shadow: var(--shadow-soft);

}

.service-card h3 {

    margin-bottom: 12px;

    font-size: 1.25rem;

    line-height: 1.25;

}

.service-card p {

    font-size: 0.89rem;

    line-height: 1.7;

}


/* =========================================================
   CLIENTS / WHO WE SUPPORT
   ========================================================= */

.clients {

    padding:
        105px
        0;

    background: var(--white);

}

.clients-grid {

    display: grid;

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

    gap: 20px;

}

.client-item {

    padding:
        30px
        27px;

    background: var(--warm-white);

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

    transition: var(--transition);

}

.client-item:hover {

    border-color:
        rgba(
            181,
            154,
            98,
            0.35
        );

    box-shadow: var(--shadow-soft);

}

.client-item h3 {

    margin-bottom: 12px;

    font-size: 1.25rem;

    line-height: 1.25;

}

.client-item p {

    font-size: 0.87rem;

    line-height: 1.7;

}


/* =========================================================
   PROCESS NUMBERS
   ========================================================= */

.process-number {

    display: inline-block;

    margin-bottom: 13px;

    color: var(--gold);

    font-size: 0.76rem;

    font-weight: 700;

    letter-spacing: 0.14em;

}


/* =========================================================
   FOUNDER
   ========================================================= */

.founder {

    padding:
        110px
        0;

    background: var(--stone);

}

.founder-grid {

    display: grid;

    grid-template-columns:
        minmax(300px, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: center;

}

.founder-image {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--navy-soft)
        );

}

.founder-image::before {

    content: "";

    position: absolute;

    width: 240px;

    height: 240px;

    border:
        1px solid
        rgba(
            181,
            154,
            98,
            0.45
        );

    transform: rotate(45deg);

}

.founder-image span {

    position: relative;

    z-index: 1;

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    font-size: 0.8rem;

    letter-spacing: 0.08em;

    text-transform: uppercase;

}

.founder-content h2 {

    margin-bottom: 7px;

    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );

    line-height: 1.15;

}

.founder-role {

    margin-bottom: 25px;

    color: var(--gold);

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;

}

.founder-content p {

    max-width: 720px;

    margin-bottom: 17px;

}

.founder-content p:last-of-type {

    margin-bottom: 0;

}

.founder-credentials {

    display: grid;

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

    gap: 14px 25px;

    margin-top: 27px;

    padding-top: 24px;

    border-top:
        1px solid
        rgba(
            16,
            29,
            47,
            0.10
        );

}

.founder-credential {

    color: var(--text-light);

    font-size: 0.84rem;

}

.founder-credential strong {

    display: block;

    margin-bottom: 2px;

    color: var(--navy);

    font-size: 0.78rem;

}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {

    padding:
        90px
        0;

    background: var(--navy);

    text-align: center;

}

.final-cta-inner {

    max-width: 760px;

    margin: 0 auto;

}

.final-cta .section-eyebrow {

    color: var(--gold-light);

}

.final-cta h2 {

    margin-bottom: 18px;

    color: var(--white);

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

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

    font-weight: 500;

    line-height: 1.15;

}

.final-cta p {

    max-width: 650px;

    margin:
        0
        auto
        30px;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    font-size: 1.02rem;

}

.final-cta-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;

}

.final-cta .btn-primary {

    background: var(--gold);

    border-color: var(--gold);

}

.final-cta .btn-primary:hover {

    background: var(--gold-light);

    border-color: var(--gold-light);

}

.final-cta .btn-secondary {

    color: var(--white);

    border-color:
        rgba(
            255,
            255,
            255,
            0.35
        );

}

.final-cta .btn-secondary:hover {

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

    border-color:
        rgba(
            255,
            255,
            255,
            0.6
        );

}


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

.contact {

    padding:
        110px
        0;

    background: var(--warm-white);

}

.contact-grid {

    display: grid;

    grid-template-columns:
        minmax(300px, 0.8fr)
        minmax(0, 1.2fr);

    gap: 85px;

    align-items: start;

}

.contact-details h2 {

    margin-bottom: 20px;

    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );

    line-height: 1.15;

}

.contact-details > p {

    max-width: 560px;

    margin-bottom: 32px;

}

.contact-item {

    display: flex;

    flex-direction: column;

    gap: 3px;

    margin-bottom: 21px;

}

.contact-item strong {

    color: var(--navy);

    font-size: 0.77rem;

    letter-spacing: 0.08em;

    text-transform: uppercase;

}

.contact-item a {

    color: var(--navy);

    font-size: 1rem;

    font-weight: 600;

}

.contact-item a:hover {

    color: var(--gold);

}

.contact-item span {

    color: var(--text-light);

}

.contact-details .contact-note {

    max-width: 520px;

    margin-top: 30px;

    padding-top: 22px;

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

    font-size: 0.79rem;

}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form {

    padding:
        38px;

    background: var(--white);

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

    box-shadow: var(--shadow-soft);

}

.form-group {

    margin-bottom: 19px;

}

.form-group label {

    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 0.78rem;

    font-weight: 700;

}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding:
        13px
        14px;

    background: var(--warm-white);

    border:
        1px solid
        rgba(
            16,
            29,
            47,
            0.16
        );

    border-radius: 0;

    color: var(--text);

    outline: none;

    transition: var(--transition);

}

.form-group input,
.form-group select {

    min-height: 48px;

}

.form-group textarea {

    min-height: 145px;

    resize: vertical;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    background: var(--white);

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(
            181,
            154,
            98,
            0.10
        );

}

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: var(--text-muted);

}

.consent-row {

    display: grid;

    grid-template-columns:
        20px
        1fr;

    align-items: start;

    gap: 10px;

    margin:
        22px
        0;

}

.consent-row input {

    width: 17px;

    height: 17px;

    margin-top: 2px;

    accent-color: var(--navy);

}

.consent-row label {

    color: var(--text-light);

    font-size: 0.76rem;

    line-height: 1.5;

}

.form-submit {

    width: 100%;

}

.contact-form .contact-note {

    margin-top: 15px;

    color: var(--text-muted);

    font-size: 0.72rem;

    line-height: 1.55;

    text-align: center;

}


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

.site-footer {

    padding:
        70px
        0
        0;

    background: var(--navy);

    color: var(--white);

}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        0.75fr
        1fr
        0.9fr;

    gap: 55px;

    padding-bottom: 55px;

}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.footer-brand {

    max-width: 360px;

}

.footer-logo {

    width: 285px;

    max-width: 285px;

    height: auto;

    max-height: 102px;

    margin-bottom: 22px;

}

.footer-brand > p {

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    font-size: 0.86rem;

}

.footer-brand .footer-tagline {

    margin-top: 14px;

    color: var(--gold-light);

    font-size: 0.76rem;

    font-weight: 700;

    letter-spacing: 0.08em;

}

.footer-legal {

    margin-top: 20px;

    color:
        rgba(
            255,
            255,
            255,
            0.45
        ) !important;

    font-size: 0.72rem !important;

}


/* =========================================================
   COMPANY INFORMATION
   ========================================================= */

.company-information {

    margin-top: 18px;

    color:
        rgba(
            255,
            255,
            255,
            0.60
        );

    font-size: 0.76rem;

    line-height: 1.7;

}

.company-information strong {

    color:
        rgba(
            255,
            255,
            255,
            0.84
        );

}

.company-information a {

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    text-decoration: underline;

    text-decoration-color:
        rgba(
            255,
            255,
            255,
            0.25
        );

    text-underline-offset: 3px;

}

.company-information a:hover {

    color: var(--white);

}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}

.footer-column h4 {

    margin-bottom: 18px;

    color: var(--white);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 0.10em;

    text-transform: uppercase;

}

.footer-column a,
.footer-location {

    margin-bottom: 9px;

    color:
        rgba(
            255,
            255,
            255,
            0.62
        );

    font-size: 0.8rem;

    line-height: 1.5;

    transition: var(--transition);

}

.footer-column a:hover {

    color: var(--gold-light);

}

.footer-location {

    display: block;

}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding:
        20px
        0
        25px;

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

    color:
        rgba(
            255,
            255,
            255,
            0.42
        );

    font-size: 0.7rem;

}


/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */

.mobile-sticky-cta {

    display: none;

}


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

@media (max-width: 1050px) {

    .nav-container {

        min-height: 88px;

    }

    .site-logo {

        width: 255px;

        max-width: 255px;

        max-height: 90px;

    }

    .main-nav {

        gap: 20px;

    }

    .main-nav a {

        font-size: 0.81rem;

    }

    .hero-container {

        gap: 45px;

    }

    .hero h1 {

        font-size:
            clamp(
                2.6rem,
                5vw,
                4rem
            );

    }

    .hero-credentials {

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

    }

    .service-group-grid {

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

    }

    .clients-grid {

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

    }

    .footer-grid {

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

    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 850px) {

    .nav-container {

        min-height: 82px;

    }

    .site-logo {

        width: 240px;

        max-width: 240px;

        max-height: 86px;

    }

    .menu-toggle {

        display: flex;

    }

    .main-nav {

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:
            10px
            24px
            22px;

        background: var(--warm-white);

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

        box-shadow:
            0 15px 30px
            rgba(
                16,
                29,
                47,
                0.08
            );

    }

    .main-nav.is-open {

        display: flex;

    }

    .main-nav a {

        padding:
            13px
            0;

        font-size: 0.9rem;

    }

    .main-nav a:not(.nav-cta)::after {

        display: none;

    }

    .main-nav .nav-cta {

        margin-top: 8px;

        padding:
            12px
            16px;

        text-align: center;

    }

    .hero {

        padding:
            80px
            0
            75px;

    }

    .hero-container {

        grid-template-columns: 1fr;

    }

    .hero-side {

        justify-content: flex-start;

    }

    .hero-card {

        max-width: 100%;

    }

    .about-grid,
    .founder-grid,
    .contact-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .founder-image {

        min-height: 420px;

        max-width: 520px;

    }

    .contact-form {

        max-width: 760px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    html {

        scroll-padding-top: 80px;

    }

    body {

        padding-bottom: 66px;

    }

    .container {

        width:
            min(
                calc(100% - 34px),
                var(--container-width)
            );

    }

    .site-header {

        position: sticky;

    }

    .nav-container {

        min-height: 78px;

    }

    .site-logo {

        width: 232px;

        max-width: 232px;

        max-height: 81px;

    }

    .hero {

        padding:
            65px
            0
            60px;

    }

    .hero-eyebrow {

        margin-bottom: 16px;

        font-size: 0.67rem;

    }

    .hero h1 {

        margin-bottom: 20px;

        font-size:
            clamp(
                2.25rem,
                11vw,
                3.25rem
            );

    }

    .hero-content > p {

        font-size: 0.97rem;

        line-height: 1.7;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

        margin-bottom: 32px;

    }

    .hero-buttons .btn {

        width: 100%;

    }

    .hero-credentials {

        grid-template-columns: 1fr;

        gap: 15px;

    }

    .hero-card {

        padding:
            35px
            28px;

    }

    .hero-card h2 {

        font-size: 2.35rem;

    }

    .about,
    .services,
    .clients,
    .founder,
    .contact {

        padding:
            75px
            0;

    }

    .section-heading {

        margin-bottom: 38px;

    }

    .section-heading h2 {

        font-size: 2rem;

    }

    .about-content h2,
    .founder-content h2,
    .contact-details h2 {

        font-size: 2rem;

    }

    .about-highlight {

        padding:
            30px
            25px;

    }

    .service-group {

        margin-bottom: 42px;

    }

    .service-group-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }

    .service-card {

        min-height: auto;

        padding:
            25px
            23px;

    }

    .clients-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }

    .client-item {

        padding:
            25px
            23px;

    }

    .founder-image {

        min-height: 380px;

    }

    .founder-credentials {

        grid-template-columns: 1fr;

    }

    .final-cta {

        padding:
            70px
            0;

    }

    .final-cta h2 {

        font-size: 2.25rem;

    }

    .final-cta-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .final-cta-buttons .btn {

        width: 100%;

    }

    .contact-form {

        padding:
            28px
            21px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;

    }

    .footer-brand {

        max-width: none;

    }

    .footer-logo {

        width: 232px;

        max-width: 232px;

        max-height: 81px;

    }

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;

    }


    /* =====================================================
       MOBILE STICKY CTA
       ===================================================== */

    .mobile-sticky-cta {

        position: fixed;

        left: 0;

        right: 0;

        bottom: 0;

        z-index: 2000;

        display: grid;

        grid-template-columns:
            1fr
            1.25fr;

        min-height: 62px;

        background: var(--navy);

        border-top:
            1px solid
            rgba(
                181,
                154,
                98,
                0.35
            );

        box-shadow:
            0 -8px 25px
            rgba(
                16,
                29,
                47,
                0.15
            );

    }

    .mobile-sticky-cta a {

        display: flex;

        align-items: center;

        justify-content: center;

        min-height: 62px;

        color: var(--white);

        font-size: 0.82rem;

        font-weight: 700;

        text-align: center;

    }

    .mobile-sticky-cta a:first-child {

        border-right:
            1px solid
            rgba(
                255,
                255,
                255,
                0.15
            );

    }

    .mobile-sticky-cta a:last-child {

        background: var(--gold);

    }

    .mobile-sticky-cta a:last-child:hover {

        background: var(--gold-light);

    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .container {

        width:
            calc(100% - 28px);

    }

    .site-logo {

        width: 205px;

        max-width: 205px;

        max-height: 72px;

    }

    .hero h1 {

        font-size: 2.15rem;

    }

    .hero-card {

        padding:
            30px
            23px;

    }

    .hero-card h2 {

        font-size: 2.15rem;

    }

    .contact-form {

        padding:
            24px
            18px;

    }

    .footer-logo {

        width: 205px;

        max-width: 205px;

        max-height: 72px;

    }

    .mobile-sticky-cta a {

        font-size: 0.75rem;

    }

}


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

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

    html {

        scroll-behavior: auto;

    }

    *,
    *::before,
    *::after {

        transition: none !important;

        animation: none !important;

    }

}
