@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600&family=Montserrat:wght@400;500;600;700&display=swap');


:root {

    --background:
        #090a0c;

    --background-soft:
        #111317;

    --background-card:
        #15171b;

    --background-card-light:
        #1b1d22;

    --gold:
        #d4a249;

    --gold-light:
        #edc875;

    --purple:
        #351345;

    --purple-light:
        #572069;

    --white:
        #f7f3eb;

    --text:
        #ded8ce;

    --muted:
        #a9a297;

    --border:
        rgba(
            255,
            255,
            255,
            0.10
        );

    --container:
        1180px;

}


* {

    box-sizing:
        border-box;

}


html {

    scroll-behavior:
        smooth;

}


body {

    margin:
        0;

    background:
        var(--background);

    color:
        var(--text);

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

    font-size:
        16px;

    line-height:
        1.6;

}


body.menu-open {

    overflow:
        hidden;

}


img {

    display:
        block;

    max-width:
        100%;

}


a {

    color:
        inherit;

    text-decoration:
        none;

}


button,
input,
textarea,
select {

    font:
        inherit;

}


h1,
h2,
h3,
h4,
h5,
h6 {

    margin-top:
        0;

    color:
        var(--white);

    font-family:
        'Cinzel',
        Georgia,
        serif;

    font-weight:
        500;

    line-height:
        1.15;

}


p {

    margin-top:
        0;

}


.container {

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

    margin:
        0 auto;

}


.section {

    padding:
        95px 0;

}


.section-heading {

    max-width:
        700px;

    margin:
        0 auto 48px;

    text-align:
        center;

}


.section-heading h2 {

    margin-bottom:
        0;

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

    font-size:
        17px;

    font-weight:
        400;

    color:
        var(--muted);

}


.eyebrow {

    margin-bottom:
        14px;

    color:
        var(--gold);

    font-size:
        12px;

    font-weight:
        700;

    letter-spacing:
        2.5px;

    text-transform:
        uppercase;

}


.button-row {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        14px;

    margin-top:
        30px;

}


.button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        48px;

    padding:
        0 25px;

    border:
        1px solid transparent;

    border-radius:
        3px;

    font-size:
        12px;

    font-weight:
        700;

    letter-spacing:
        0.8px;

    text-transform:
        uppercase;

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

}


.button:hover {

    transform:
        translateY(-2px);

}


.button-gold {

    background:
        var(--gold);

    color:
        #17120b;

    border-color:
        var(--gold);

}


.button-gold:hover {

    background:
        var(--gold-light);

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

}


.button-outline {

    background:
        rgba(
            0,
            0,
            0,
            0.18
        );

    color:
        var(--white);

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

}


.button-outline:hover {

    color:
        var(--gold);

    border-color:
        var(--gold);

}


/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/


.site-header {

    position:
        fixed;

    top:
        0;

    left:
        0;

    right:
        0;

    z-index:
        1000;

    background:
        rgba(
            8,
            9,
            11,
            0.93
        );

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

    backdrop-filter:
        blur(14px);

}


.site-header.scrolled {

    background:
        rgba(
            8,
            9,
            11,
            0.98
        );

}


.header-inner {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    min-height:
        88px;

    gap:
        30px;

}


.logo {

    display:
        flex;

    align-items:
        center;

    flex-shrink:
        0;

    gap:
        12px;

}


.logo img {

    width:
        auto;

    max-width:
        230px;

    max-height:
        62px;

    object-fit:
        contain;

}


.logo-symbol {

    display:
        grid;

    place-items:
        center;

    width:
        44px;

    height:
        44px;

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

    color:
        var(--gold);

    font-family:
        'Cinzel',
        Georgia,
        serif;

    font-size:
        25px;

}


.logo strong {

    display:
        block;

    color:
        var(--gold);

    font-family:
        'Cinzel',
        Georgia,
        serif;

    font-size:
        19px;

    font-weight:
        500;

    letter-spacing:
        3px;

    line-height:
        1.1;

}


.logo small {

    display:
        block;

    margin-top:
        4px;

    color:
        var(--muted);

    font-size:
        8px;

    letter-spacing:
        1.7px;

}


.main-nav {

    display:
        flex;

    align-items:
        center;

    gap:
        26px;

}


.main-nav > a {

    position:
        relative;

    color:
        #d5d0c8;

    font-size:
        12px;

    font-weight:
        500;

    transition:
        color 0.2s ease;

}


.main-nav > a:not(.nav-quote)::after {

    content:
        '';

    position:
        absolute;

    left:
        0;

    right:
        100%;

    bottom:
        -8px;

    height:
        1px;

    background:
        var(--gold);

    transition:
        right 0.25s ease;

}


.main-nav > a:hover {

    color:
        var(--gold);

}


.main-nav > a:hover::after {

    right:
        0;

}


.nav-quote {

    display:
        inline-flex;

    align-items:
        center;

    min-height:
        42px;

    padding:
        0 18px;

    background:
        var(--gold);

    color:
        #17120b !important;

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

    border-radius:
        3px;

    font-weight:
        700 !important;

    letter-spacing:
        0.6px;

    text-transform:
        uppercase;

}


.nav-quote:hover {

    background:
        var(--gold-light);

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

}


.menu-toggle {

    display:
        none;

    width:
        44px;

    height:
        44px;

    padding:
        0;

    background:
        transparent;

    color:
        var(--white);

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

    border-radius:
        3px;

    cursor:
        pointer;

    font-size:
        24px;

}


/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/


.hero {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    min-height:
        690px;

    padding-top:
        88px;

    overflow:
        hidden;

    background:
        #111;

}


.hero-image {

    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        center;

}


.hero-overlay {

    position:
        absolute;

    inset:
        0;

    background:

        linear-gradient(
            90deg,
            rgba(
                5,
                6,
                8,
                0.98
            )
            0%,
            rgba(
                5,
                6,
                8,
                0.87
            )
            34%,
            rgba(
                5,
                6,
                8,
                0.38
            )
            68%,
            rgba(
                5,
                6,
                8,
                0.12
            )
            100%
        ),

        linear-gradient(
            0deg,
            rgba(
                5,
                6,
                8,
                0.45
            ),
            transparent 45%
        );

}


.hero-content {

    position:
        relative;

    z-index:
        2;

    width:
        100%;

}


.hero-copy {

    width:
        min(
            590px,
            100%
        );

    padding:
        80px 0;

}


.hero h1 {

    margin:
        0 0 24px;

    font-size:
        clamp(
            48px,
            6vw,
            78px
        );

    line-height:
        1.02;

    letter-spacing:
        -1.5px;

}


.hero-description {

    max-width:
        530px;

    margin-bottom:
        0;

    color:
        #d1cbc1;

    font-size:
        17px;

    line-height:
        1.8;

}


/*
|--------------------------------------------------------------------------
| Trust bar
|--------------------------------------------------------------------------
*/


.trust-bar {

    background:
        #0f1114;

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

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

}


.trust-grid {

    display:
        grid;

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

}


.trust-item {

    display:
        grid;

    grid-template-columns:
        auto 1fr;

    column-gap:
        13px;

    align-items:
        center;

    min-height:
        94px;

    padding:
        20px 24px;

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

}


.trust-item:first-child {

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

}


.trust-icon {

    grid-row:
        1 / 3;

    color:
        var(--gold);

    font-size:
        28px;

    line-height:
        1;

}


.trust-item strong {

    color:
        var(--white);

    font-size:
        12px;

    letter-spacing:
        0.4px;

    text-transform:
        uppercase;

}


.trust-item small {

    color:
        var(--muted);

    font-size:
        10px;

}


/*
|--------------------------------------------------------------------------
| Services
|--------------------------------------------------------------------------
*/


.services-section {

    background:
        var(--background);

}


.services-grid {

    display:
        grid;

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

    gap:
        17px;

}


.service-card {

    min-width:
        0;

    overflow:
        hidden;

    background:
        var(--background-card);

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

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

}


.service-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(
            212,
            162,
            73,
            0.65
        );

    box-shadow:
        0 18px 40px
        rgba(
            0,
            0,
            0,
            0.28
        );

}


.service-image {

    width:
        100%;

    height:
        180px;

    object-fit:
        cover;

    background:
        var(--background-card-light);

}


.service-content {

    padding:
        22px 17px 24px;

    text-align:
        center;

}


.service-content h3 {

    margin-bottom:
        10px;

    color:
        var(--gold);

    font-size:
        14px;

    letter-spacing:
        0.5px;

}


.service-content p {

    margin-bottom:
        0;

    color:
        var(--muted);

    font-size:
        11px;

    line-height:
        1.7;

}


/*
|--------------------------------------------------------------------------
| Projects
|--------------------------------------------------------------------------
*/


.projects-section {

    position:
        relative;

    background:

        radial-gradient(
            circle at 50% 50%,
            rgba(
                89,
                32,
                106,
                0.42
            ),
            transparent 46%
        ),

        linear-gradient(
            180deg,
            #111015 0%,
            #24132d 48%,
            #111015 100%
        );

}


.projects-grid {

    display:
        grid;

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

    gap:
        17px;

}


.project-card {

    position:
        relative;

    display:
        block;

    min-height:
        295px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(
            212,
            162,
            73,
            0.26
        );

    background:
        #111;

}


.project-card img {

    width:
        100%;

    height:
        100%;

    min-height:
        295px;

    object-fit:
        cover;

    transition:
        transform 0.4s ease,
        filter 0.4s ease;

}


.project-card::after {

    content:
        '';

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            0deg,
            rgba(
                0,
                0,
                0,
                0.9
            )
            0%,
            rgba(
                0,
                0,
                0,
                0
            )
            55%
        );

}


.project-card:hover img {

    transform:
        scale(1.05);

    filter:
        brightness(1.08);

}


.project-title {

    position:
        absolute;

    z-index:
        2;

    left:
        18px;

    right:
        18px;

    bottom:
        17px;

    color:
        var(--white);

    font-size:
        13px;

    font-weight:
        600;

    letter-spacing:
        0.3px;

}


.center {

    margin-top:
        35px;

    text-align:
        center;

}


/*
|--------------------------------------------------------------------------
| Testimonials and CTA
|--------------------------------------------------------------------------
*/


.reviews-section {

    background:
        var(--background);

}


.reviews-layout {

    display:
        grid;

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

    gap:
        65px;

    align-items:
        center;

}


.testimonial {

    position:
        relative;

    padding-right:
        20px;

}


.quote-mark {

    height:
        52px;

    margin-top:
        15px;

    color:
        var(--gold);

    font-family:
        Georgia,
        serif;

    font-size:
        82px;

    line-height:
        1;

}


.testimonial blockquote {

    margin:
        0 0 24px;

    color:
        var(--white);

    font-family:
        'Cinzel',
        Georgia,
        serif;

    font-size:
        clamp(
            24px,
            3vw,
            34px
        );

    line-height:
        1.55;

}


.testimonial-author {

    margin-bottom:
        0;

    color:
        var(--gold);

    font-size:
        13px;

    font-weight:
        600;

}


.cta-card {

    padding:
        42px;

    background:

        linear-gradient(
            145deg,
            rgba(
                70,
                22,
                86,
                0.95
            ),
            rgba(
                37,
                14,
                45,
                0.96
            )
        );

    border:
        1px solid
        rgba(
            212,
            162,
            73,
            0.32
        );

    box-shadow:
        0 25px 60px
        rgba(
            0,
            0,
            0,
            0.35
        );

}


.cta-card h2 {

    margin-bottom:
        18px;

    font-size:
        30px;

}


.cta-card > p {

    color:
        #d5ced8;

}


.cta-list {

    margin:
        25px 0 30px;

    padding:
        0;

    list-style:
        none;

}


.cta-list li {

    position:
        relative;

    margin:
        11px 0;

    padding-left:
        25px;

    color:
        #e5dfe8;

    font-size:
        13px;

}


.cta-list li::before {

    content:
        '✓';

    position:
        absolute;

    left:
        0;

    color:
        var(--gold);

    font-weight:
        700;

}


/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/


.site-footer {

    background:
        #07080a;

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

}


.footer-grid {

    display:
        grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap:
        60px;

    padding:
        62px 0;

}


.footer-grid h3,
.footer-grid h4 {

    margin-bottom:
        20px;

    color:
        var(--gold);

}


.footer-grid p {

    color:
        var(--muted);

    font-size:
        13px;

}


.footer-grid a {

    display:
        block;

    margin:
        9px 0;

    color:
        var(--muted);

    font-size:
        13px;

    transition:
        color 0.2s ease;

}


.footer-grid a:hover {

    color:
        var(--gold);

}


.footer-bottom {

    padding:
        18px 20px;

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

    color:
        #756f67;

    font-size:
        11px;

    text-align:
        center;

}


/*
|--------------------------------------------------------------------------
| Internal pages
|--------------------------------------------------------------------------
*/


.page-hero {

    padding:
        175px 0 75px;

    background:

        radial-gradient(
            circle at 60% 20%,
            rgba(
                82,
                29,
                100,
                0.38
            ),
            transparent 40%
        ),

        linear-gradient(
            135deg,
            #090a0c,
            #211029
        );

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

}


.page-hero h1 {

    max-width:
        760px;

    margin-bottom:
        18px;

    font-size:
        clamp(
            42px,
            6vw,
            66px
        );

}


.page-hero p {

    max-width:
        650px;

    margin-bottom:
        0;

    color:
        var(--muted);

}


.content-card {

    padding:
        45px;

    background:
        var(--background-card);

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

}


.review-grid {

    display:
        grid;

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

    gap:
        20px;

}


.review-card {

    padding:
        30px;

    background:
        var(--background-card);

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

}


.review-stars {

    margin-bottom:
        15px;

    color:
        var(--gold);

    letter-spacing:
        2px;

}


.review-card p {

    color:
        var(--text);

}


.review-card strong {

    color:
        var(--gold);

    font-size:
        13px;

}


.contact-grid {

    display:
        grid;

    grid-template-columns:
        minmax(
            0,
            1.35fr
        )
        minmax(
            280px,
            0.65fr
        );

    gap:
        25px;

}


.contact-form,
.contact-details {

    padding:
        36px;

    background:
        var(--background-card);

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

}


.form-grid {

    display:
        grid;

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

    gap:
        18px;

}


.form-field {

    display:
        block;

}


.form-field.full {

    grid-column:
        1 / -1;

}


.form-field span {

    display:
        block;

    margin-bottom:
        8px;

    color:
        var(--muted);

    font-size:
        12px;

}


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

    width:
        100%;

    padding:
        13px 14px;

    background:
        #0b0d10;

    color:
        var(--white);

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

    border-radius:
        2px;

    outline:
        none;

}


.form-field textarea {

    min-height:
        150px;

    resize:
        vertical;

}


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

    border-color:
        var(--gold);

}


.alert {

    margin-bottom:
        20px;

    padding:
        14px 16px;

    border:
        1px solid transparent;

}


.alert-success {

    background:
        rgba(
            38,
            115,
            58,
            0.22
        );

    border-color:
        rgba(
            71,
            166,
            95,
            0.45
        );

}


.alert-error {

    background:
        rgba(
            135,
            38,
            38,
            0.22
        );

    border-color:
        rgba(
            192,
            66,
            66,
            0.45
        );

}


/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/


@media (
    max-width:
    1080px
) {

    .main-nav {

        gap:
            18px;

    }


    .services-grid {

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

    }


    .projects-grid {

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

    }

}




@media (
    max-width:
    680px
) {

    .container {

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

    }


    .section {

        padding:
            70px 0;

    }


    .header-inner {

        min-height:
            78px;

    }


    .main-nav {

        top:
            78px;

    }


    .logo strong {

        font-size:
            16px;

    }


    .logo small {

        display:
            none;

    }


    .logo img {

        max-width:
            185px;

        max-height:
            52px;

    }


    .hero {

        min-height:
            650px;

        padding-top:
            78px;

    }


    .hero-copy {

        padding:
            70px 0;

    }


    .hero h1 {

        font-size:
            46px;

    }


    .hero-description {

        font-size:
            15px;

    }


    .button-row {

        flex-direction:
            column;

    }


    .button-row .button {

        width:
            100%;

    }


    .trust-grid {

        grid-template-columns:
            1fr;

    }


    .trust-item {

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

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

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

    }


    .services-grid,
    .projects-grid,
    .review-grid,
    .footer-grid,
    .form-grid {

        grid-template-columns:
            1fr;

    }


    .service-image {

        height:
            230px;

    }


    .project-card,
    .project-card img {

        min-height:
            340px;

    }


    .cta-card,
    .content-card,
    .contact-form,
    .contact-details {

        padding:
            28px 22px;

    }


    .footer-grid {

        gap:
            30px;

    }


    .page-hero {

        padding:
            140px 0 60px;

    }


    .form-field.full {

        grid-column:
            auto;

    }

}
.hero-content {
    padding-left: 32px;
    padding-right: 32px;
}

@media (max-width: 680px) {
    .hero-content {
        padding-left: 8px;
        padding-right: 8px;
    }
}
@media (max-width: 900px) {

    .site-header {
        backdrop-filter: none;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        bottom: auto;

        display: none;
        width: 100%;
        max-height: calc(100vh - 88px);
        padding: 18px 24px 28px;

        flex-direction: column;
        align-items: stretch;
        gap: 0;

        background: #090a0c;
        border-top: 1px solid var(--border);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);

        overflow-y: auto;
        z-index: 1001;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a {
        display: block;
        width: 100%;
        padding: 16px 4px;

        color: #f7f3eb !important;
        font-size: 15px;
        line-height: 1.4;

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

    .main-nav > a::after {
        display: none;
    }

    .nav-quote {
        display: flex !important;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
        padding: 14px 18px;
        border-bottom: 1px solid var(--gold) !important;
    }
}
@media (max-width: 900px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-header,
    .header-inner,
    .main-nav {
        width: 100%;
        max-width: 100%;
    }

    .header-inner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo {
        min-width: 0;
        max-width: calc(100% - 64px);
    }

    .logo img {
        max-width: 150px;
        height: auto;
    }

    .main-nav {
        box-sizing: border-box;
        left: 0;
        right: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-nav > a {
        box-sizing: border-box;
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}
.footer-bottom a {

    color: var(--gold);

    font-weight: 600;

    text-decoration: none;

    transition: color .2s ease;

}

.footer-bottom a:hover {

    color: var(--gold-light);

}

/*
|--------------------------------------------------------------------------
| Services page
|--------------------------------------------------------------------------
*/

.services-page-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.services-page-item {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #15171b,
            #101216
        );

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

    box-shadow:
        0 18px 45px
        rgba(
            0,
            0,
            0,
            0.22
        );
}

.services-page-item-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
}

.services-page-item-reverse .services-page-image-wrap {
    order: 2;
}

.services-page-item-reverse .services-page-content {
    order: 1;
}

.services-page-image-wrap,
.services-page-content {
    min-width: 0;
}

.services-page-image-wrap {
    height: 100%;
    background: var(--background-card-light);
}

.services-page-image {
    width: 100%;
    height: 100%;
    min-height: 420px;

    object-fit: cover;

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

.services-page-image-empty {
    display: block;
}

.services-page-content {
    display: flex;
    flex-direction: column;

    padding: 46px;
}

.services-page-content h2 {
    margin-bottom: 20px;

    font-size: clamp(
        34px,
        4vw,
        48px
    );
}

.services-page-description {
    margin-bottom: 26px;

    color: #bcb5aa;

    font-size: 17px;
    line-height: 1.9;
}

.services-page-list-points {
    margin: 0 0 30px;
}

.services-page-button {
    min-width: 190px;
    margin-top: auto;
    align-self: flex-start;
}

.services-page-cta {
    background:
        linear-gradient(
            135deg,
            #22102b,
            #111317
        );
}

.services-page-cta-inner {
    max-width: 900px;
    text-align: center;
}

.services-page-cta h2 {
    margin-bottom: 25px;

    font-size: clamp(
        38px,
        6vw,
        58px
    );
}

.services-page-cta p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 auto 40px;

    color: #c7c0b6;

    font-size: 18px;
}


@media (max-width: 900px) {

    .services-page-list {
        gap: 28px;
    }

    .services-page-item,
    .services-page-item-reverse {
        grid-template-columns: 1fr;
    }

    .services-page-item-reverse .services-page-image-wrap,
    .services-page-item-reverse .services-page-content {
        order: initial;
    }

    .services-page-image {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .services-page-content {
        padding: 34px;
    }

    .services-page-content h2 {
        font-size: 36px;
    }

    .services-page-description {
        font-size: 16px;
        line-height: 1.8;
    }

    .services-page-button {
        margin-top: 6px;
    }

}


@media (max-width: 680px) {

    .services-page {
        padding-top: 50px;
    }

    .services-page-list {
        gap: 24px;
    }

    .services-page-item {
        border-radius: 4px;
    }

    .services-page-image {
        aspect-ratio: 4 / 3;
    }

    .services-page-content {
        padding: 26px 22px 24px;
    }

    .services-page-content h2 {
        margin-bottom: 15px;
        font-size: 30px;
    }

    .services-page-description {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.75;
    }

    .services-page-list-points {
        margin-bottom: 24px;
    }

    .services-page-button {
        width: 100%;
        margin-top: 0;
    }

    .services-page-cta h2 {
        font-size: 38px;
    }

    .services-page-cta p:not(.eyebrow) {
        font-size: 16px;
    }

}
/*
|--------------------------------------------------------------------------
| About page
|--------------------------------------------------------------------------
*/

.about-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.about-story-image-wrap,
.about-story-content {
    min-width: 0;
}

.about-story-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    background: var(--background-card-light);
    border: 1px solid var(--border);
}

.about-story-image-empty {
    display: block;
}

.about-story-content h2 {
    margin-bottom: 24px;
    font-size: clamp(36px, 5vw, 56px);
}

.about-story-text {
    margin-bottom: 0;
    color: #bcb5aa;
    font-size: 17px;
    line-height: 2;
}

.about-cards-section {
    padding-top: 0;
}

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

.about-card {
    min-width: 0;
    padding: 38px;
    background:
        linear-gradient(
            145deg,
            #17191d,
            #111317
        );
    border: 1px solid var(--border);
}

.about-card h3 {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 24px;
}

.about-card p {
    margin-bottom: 0;
    color: #bcb5aa;
    line-height: 1.9;
}

.about-reasons-section {
    background: #111317;
}

.about-reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.about-reason {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 18px 20px;
    background: var(--background-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
}

.about-reason-icon {
    flex: 0 0 auto;
    color: var(--gold);
    font-weight: 700;
}

.about-cta-section {
    background:
        linear-gradient(
            135deg,
            #22102b,
            #111317
        );
}

.about-cta-inner {
    max-width: 900px;
    text-align: center;
}

.about-cta-inner h2 {
    margin-bottom: 22px;
    font-size: clamp(38px, 6vw, 58px);
}

.about-cta-inner p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 auto 38px;
    color: #c7c0b6;
    font-size: 18px;
    line-height: 1.8;
}


@media (max-width: 900px) {

    .about-story-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-story-image {
        height: auto;
        aspect-ratio: 4 / 3;
    }

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

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

}


@media (max-width: 680px) {

    .about-story-section {
        padding-top: 52px;
    }

    .about-story-layout {
        gap: 28px;
    }

    .about-story-image {
        aspect-ratio: 1 / 1;
    }

    .about-story-content h2 {
        margin-bottom: 18px;
        font-size: 34px;
    }

    .about-story-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-card {
        padding: 26px 22px;
    }

    .about-card h3 {
        font-size: 22px;
    }

    .about-reason {
        padding: 16px 18px;
    }

    .about-cta-inner h2 {
        font-size: 38px;
    }

    .about-cta-inner p:not(.eyebrow) {
        font-size: 16px;
    }

    .about-cta-inner .button {
        width: 100%;
    }

}
@media (max-width: 900px) {

    .about-story-layout {
        display: block !important;
        width: 100% !important;
    }

    .about-story-image-wrap,
    .about-story-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    .about-story-image-wrap {
        margin-bottom: 28px;
    }

    .about-story-image {
        display: block;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .about-story-content {
        padding: 0 !important;
    }

    .about-story-content h2 {
        font-size: 32px !important;
        line-height: 1.15;
    }

    .about-story-text {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }

    .about-cards-grid,
    .about-reasons-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 680px) {

    .about-story-image {
        aspect-ratio: 4 / 3;
    }

    .about-story-section .container {
        width: calc(100% - 28px);
    }

}

/*
|--------------------------------------------------------------------------
| Homepage review and CTA
|--------------------------------------------------------------------------
*/

.home-reviews-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(340px, 0.85fr);
    gap: 48px;
    align-items: stretch;
}

.home-review-card {
    min-width: 0;
    padding: 42px;

    background:
        linear-gradient(
            145deg,
            #15171b,
            #101216
        );

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

.home-review-card blockquote {
    margin: 0 0 28px;

    color: var(--white);

    font-family:
        'Cinzel',
        Georgia,
        serif;

    font-size: clamp(
        25px,
        3vw,
        35px
    );

    line-height: 1.5;
}

.home-review-customer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.home-review-photo {
    flex: 0 0 auto;

    width: 72px;
    height: 72px;

    border: 2px solid var(--gold);
    border-radius: 50%;

    object-fit: cover;
}

.home-review-customer-details {
    min-width: 0;
}

.home-review-customer-details .testimonial-author {
    margin: 0;
}

.home-review-stars {
    margin: 5px 0 0;

    color: var(--gold);

    font-size: 18px;
    letter-spacing: 2px;
}

.home-review-cta {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-review-cta .button {
    align-self: flex-start;
    margin-top: auto;
}


@media (max-width: 900px) {

    .home-reviews-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-review-card,
    .home-review-cta {
        width: 100%;
        min-width: 0;
    }

}


@media (max-width: 680px) {

    .home-review-card {
        padding: 28px 22px;
    }

    .home-review-card blockquote {
        font-size: 27px;
        line-height: 1.45;
    }

    .home-review-customer {
        align-items: flex-start;
    }

    .home-review-photo {
        width: 64px;
        height: 64px;
    }

    .home-review-stars {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .home-review-cta {
        padding: 28px 22px;
    }

    .home-review-cta .button {
        width: 100%;
    }

}
/*
|--------------------------------------------------------------------------
| Contact page mobile fix
|--------------------------------------------------------------------------
*/

.contact-grid {
    align-items: start;
}

.contact-form,
.contact-details {
    min-width: 0;
}

@media (max-width: 900px) {

    .contact-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .contact-form,
    .contact-details {
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact-form {
        order: 1;
    }

    .contact-details {
        order: 2;
    }

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

    .contact-form .form-field,
    .contact-form .form-field.full {
        grid-column: auto !important;
        width: 100%;
        min-width: 0;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
    }

    .contact-form select {
        appearance: auto;
    }

    .contact-form .button {
        width: 100%;
        margin-top: 8px;
    }
}

@media (max-width: 680px) {

    .contact-form,
    .contact-details {
        padding: 26px 22px;
    }

    .contact-details h2 {
        font-size: 31px;
    }

    .contact-details h3 {
        margin-top: 30px;
        font-size: 24px;
    }

    .contact-form textarea {
        min-height: 140px;
    }

}