﻿:root {
    --dark: #0d1621;
    --dark-2: #132130;
    --gold: #d7b47d;
    --gold-2: #b98b4d;
    --cream: #f7f2e8;
    --cream-2: #eee4d5;
    --text: #111827;
    --muted: #667085;
    --white: #fff;
    --shadow: 0 18px 46px rgba(13,22,33,.10);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.section {
    padding: 32px 0;
}

.center {
    text-align: center;
    margin-inline: auto;
}

    .center p {
        margin-inline: auto;
    }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9,16,25,.20);
    border-bottom: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(16px);
    transition: background .28s ease, box-shadow .28s ease, border-color .28s ease;
}

    .site-header.scrolled {
        background: rgba(13,22,33,.94);
        box-shadow: 0 12px 36px rgba(0,0,0,.16);
    }

.header-inner {
    height: 86px;
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
    gap: 28px;
    transition: height .28s ease;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    flex-shrink: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--gold);
    background: rgba(255,255,255,.08);
}

.brand-text strong {
    display: block;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: .02em;
}

.brand-text small {
    display: block;
    margin-top: 2px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .28em;
    color: rgba(255,255,255,.62);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
    color: rgba(255,255,255,.82);
    font-size: 14px;
}

    .main-nav a {
        position: relative;
        padding: 10px 16px;
        border-radius: 999px;
        color: rgba(255,255,255,.78);
        white-space: nowrap;
        transition: .25s ease;
    }

        .main-nav a:hover {
            color: #fff;
            background: rgba(255,255,255,.10);
        }

        .main-nav a.active {
            color: #fff;
            background: linear-gradient(135deg, rgba(215,180,125,.28), rgba(215,180,125,.12));
            border: 1px solid rgba(215,180,125,.35);
        }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 5px;
            height: 2px;
            border-radius: 999px;
            background: var(--gold);
            opacity: 0;
            transform: scaleX(.4);
            transition: .25s ease;
        }

        .main-nav a:hover::after,
        .main-nav a.active::after {
            opacity: 1;
            transform: scaleX(1);
        }

.header-cta {
    flex-shrink: 0;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: .25s;
}

    .header-cta:hover {
        background: #fff;
        color: #111;
    }

.mobile-menu-btn {
    display: none;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding-bottom: 42px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1900&q=85') center/cover no-repeat;
    transition: transform .2s ease-out;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(8,15,25,.86) 0%,rgba(8,15,25,.62) 45%,rgba(8,15,25,.26) 100%), radial-gradient(circle at top right,rgba(215,180,125,.24),transparent 32%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center;
    min-height: 760px;
    padding-top: 128px;
    padding-bottom: 36px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: 11px;
    font-weight: 600;
}

.eyebrow {
    padding: 10px 16px;
    border-radius: 999px;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(12px);
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #fff;
    font-size: 64px;
    line-height: 1.06;
    letter-spacing: -.035em;
    max-width: 820px;
}

.hero p {
    margin-top: 22px;
    max-width: 640px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.82;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 600;
    font-size: 14px;
    transition: .25s;
}

.btn-light {
    background: #fff;
    color: #111;
}

    .btn-light:hover {
        transform: translateY(-2px);
        background: #f1f1f1;
    }

.btn-outline {
    border: 1px solid rgba(255,255,255,.26);
    color: #fff;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
}

    .btn-outline:hover {
        transform: translateY(-2px);
        background: #fff;
        color: #111;
    }

.btn-dark {
    margin-top: 26px;
    background: var(--dark);
    color: #fff;
}

    .btn-dark:hover {
        background: #000;
        transform: translateY(-2px);
    }

.hero-card {
    justify-self: end;
    width: min(420px,100%);
    padding: 16px;
    border-radius: 34px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
    color: #fff;
}

.hero-card-img {
    height: 390px;
    border-radius: 26px;
    background: url('https://images.unsplash.com/photo-1600047509358-9dc75507daeb?auto=format&fit=crop&w=1000&q=85') center/cover no-repeat;
}

.hero-card-body {
    padding: 20px 8px 4px;
}

    .hero-card-body span {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .28em;
        color: rgba(255,255,255,.62);
    }

    .hero-card-body h2 {
        margin-top: 10px;
        font-size: 26px;
        line-height: 1.18;
        font-weight: 300;
    }

    .hero-card-body p {
        margin-top: 11px;
        font-size: 14px;
        color: rgba(255,255,255,.68);
        line-height: 1.75;
    }

.hero-stats {
    position: relative;
    z-index: 3;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    padding-bottom: 0;
}

    .hero-stats div {
        position: relative;
        overflow: hidden;
        isolation: isolate;
        padding: 19px 18px;
        border-radius: 22px;
        background: rgba(255,255,255,.13);
        border: 1px solid rgba(255,255,255,.15);
        backdrop-filter: blur(14px);
        color: #fff;
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

        .hero-stats div::before {
            content: "";
            position: absolute;
            inset: -1px;
            z-index: -2;
            background: linear-gradient(135deg, rgba(255,255,255,.20), rgba(215,180,125,.28), rgba(255,255,255,.04));
            opacity: .70;
        }

        .hero-stats div::after {
            content: "";
            position: absolute;
            right: -34px;
            top: -34px;
            width: 92px;
            height: 92px;
            border-radius: 50%;
            background: rgba(215,180,125,.18);
            filter: blur(2px);
            transition: .25s ease;
        }

        .hero-stats div:hover {
            transform: translateY(-5px);
            border-color: rgba(215,180,125,.38);
            box-shadow: 0 22px 54px rgba(0,0,0,.22);
        }

            .hero-stats div:hover::after {
                transform: scale(1.25);
                background: rgba(215,180,125,.26);
            }

    .hero-stats strong {
        position: relative;
        z-index: 1;
        display: block;
        font-size: 23px;
        font-weight: 300;
    }

    .hero-stats span {
        position: relative;
        z-index: 1;
        display: block;
        color: rgba(255,255,255,.64);
        font-size: 13px;
        margin-top: 3px;
    }

/* Sections */
.section-kicker {
    color: var(--gold-2);
    margin-bottom: 14px;
}

.section-heading h2,
.brand-copy h2,
.process-content h2,
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -.02em;
}

.section-heading p {
    margin-top: 15px;
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

/* Brand */
.brand-section {
    padding-top: 72px;
    padding-bottom: 68px;
}

.brand-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 42px;
    align-items: start;
}

.brand-copy {
    font-size: 16px;
    color: #53606f;
    line-height: 1.9;
}

    .brand-copy p + p {
        margin-top: 14px;
    }

.brand-cards {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 20px;
}

.brand-card {
    min-height: 275px;
    border-radius: 30px;
    padding: 28px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 12px 40px rgba(13,22,33,.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .brand-card h3 {
        margin-top: 20px;
        font-size: 26px;
        font-weight: 400;
        letter-spacing: -.03em;
    }

    .brand-card p {
        margin-top: 10px;
        color: var(--muted);
        line-height: 1.75;
    }

    .brand-card.dark {
        background: var(--dark);
        color: #fff;
    }

        .brand-card.dark p {
            color: rgba(255,255,255,.68);
        }

    .brand-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 26px 70px rgba(13,22,33,.14);
    }

    .brand-card.dark:hover {
        box-shadow: 0 26px 70px rgba(13,22,33,.22);
    }

.brand-icon {
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(175,138,85,.13);
    color: #af8a55;
    font-size: 34px;
    margin-bottom: 0;
    transition: .25s;
}

.brand-card:hover .brand-icon {
    transform: scale(1.06);
}

.brand-card.dark .brand-icon {
    background: rgba(255,255,255,.12);
    color: #d8b889;
}

.brand-card.premium {
    background: linear-gradient(145deg, #efe1c8 0%, #d9c09a 100%);
    border: 1px solid rgba(185,139,77,.24);
}

    .brand-card.premium .brand-icon {
        background: rgba(13,22,33,.12);
        color: var(--dark);
    }

    .brand-card.premium:hover {
        transform: translateY(-4px);
        box-shadow: 0 26px 70px rgba(13,22,33,.14);
    }

/* Services */
.services-section {
    background: #fff;
    padding-top: 44px;
    padding-bottom: 28px;
}

.services-grid {
    margin-top: 34px;
    margin-bottom: 34px;
    display: grid;
    grid-template-columns: 1.15fr .9fr .9fr;
    gap: 20px;
}

.service-card {
    position: relative;
    min-height: 390px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #111;
}

    .service-card.large {
        min-height: 455px;
    }

.service-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .75s ease;
}

.service-card:hover .service-bg {
    transform: scale(1.08);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(9,16,25,.04),rgba(9,16,25,.20) 32%,rgba(9,16,25,.82));
}

.service-content {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    color: #fff;
}

    .service-content span {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .28em;
        color: rgba(255,255,255,.66);
    }

    .service-content h3 {
        margin-top: 12px;
        font-size: 30px;
        font-weight: 300;
        letter-spacing: -.04em;
    }

    .service-content p {
        margin-top: 10px;
        color: rgba(255,255,255,.78);
        line-height: 1.75;
        font-size: 14px;
    }

.mini-services {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

    .mini-services a,
    .mini-services article {
        display: block;
        background: var(--cream);
        border: 1px solid rgba(0,0,0,.05);
        border-radius: 24px;
        padding: 22px;
        transition: .25s;
    }

        .mini-services a:hover,
        .mini-services article:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 42px rgba(13,22,33,.09);
            background: #fff;
        }

    .mini-services span {
        font-weight: 700;
        color: var(--gold-2);
        font-size: 30px;
    }

    .mini-services h3 {
        margin-top: 12px;
        font-size: 21px;
        font-weight: 500;
    }

    .mini-services p {
        margin-top: 8px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.7;
    }

/* CTA */
.cta-section {
    padding: 32px 0 42px;
    background: linear-gradient(180deg,#fff 0%,var(--cream-2) 100%);
}

.cta-box {
    border-radius: 32px;
    background: linear-gradient(135deg,var(--dark),#223244);
    color: #fff;
    padding: 38px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 24px 58px rgba(13,22,33,.16);
}

    .cta-box span {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .28em;
        color: var(--gold);
    }

    .cta-box h2 {
        margin-top: 10px;
        font-family: 'Playfair Display', serif;
        font-size: 34px;
        line-height: 1.22;
        max-width: 740px;
    }

    .cta-box p {
        margin-top: 10px;
        color: rgba(255,255,255,.68);
        max-width: 620px;
        line-height: 1.75;
    }

    .cta-box .btn {
        flex-shrink: 0;
    }

/* Contact */
.contact-section {
    background: var(--cream);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
}

.contact-info-panel,
.contact-form-panel {
    background: #fff;
    border-radius: 34px;
    padding: 38px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.05);
}

    .contact-info-panel h2 {
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        line-height: 1.15;
        font-weight: 600;
        letter-spacing: -.02em;
    }

    .contact-info-panel p {
        margin-top: 16px;
        color: var(--muted);
        line-height: 1.85;
        font-size: 16px;
    }

.contact-info-boxes {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 88px;
    padding: 18px 20px;
    border-radius: 24px;
    background: var(--cream);
    border: 1px solid rgba(0,0,0,.05);
    transition: .25s ease;
}

    .contact-info-box:hover {
        background: #fff;
        box-shadow: 0 14px 34px rgba(13,22,33,.08);
        transform: translateY(-2px);
    }

.contact-info-box-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(185,139,77,.15);
    color: var(--gold-2);
    font-size: 26px;
    line-height: 1;
}

.contact-info-box:hover .contact-info-box-icon {
    background: var(--gold-2);
    color: #fff;
}

.contact-info-box-content {
    min-width: 0;
}

    .contact-info-box-content strong {
        display: block;
        font-size: 15px;
        font-weight: 700;
        color: var(--text);
    }

    .contact-info-box-content a,
    .contact-info-box-content span {
        display: block;
        margin-top: 4px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.5;
        word-break: break-word;
    }

.contact-form-panel h3 {
    margin-top: 4px;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -.02em;
}

.contact-form-desc {
    margin: 10px 0 22px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 14px;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,.10);
    background: #fbfaf7;
    border-radius: 999px;
    height: 54px;
    padding: 0 18px;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 14px;
    outline: none;
    transition: .25s ease;
}

.contact-form-panel textarea {
    height: 140px;
    border-radius: 24px;
    padding: 18px;
    resize: vertical;
}

    .contact-form-panel input:focus,
    .contact-form-panel select:focus,
    .contact-form-panel textarea:focus {
        border-color: var(--gold-2);
        background: #fff;
    }

.contact-form-panel button {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

    .contact-form-panel button:hover {
        background: #000;
        transform: translateY(-2px);
    }

.contact-map-section {
    background: var(--cream);
    padding: 0 0 42px;
}

.contact-map-box {
    overflow: hidden;
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.05);
}

.contact-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 34px;
}

    .contact-map-header h2 {
        margin-top: 8px;
        font-family: 'Playfair Display', serif;
        font-size: 34px;
        line-height: 1.15;
        font-weight: 600;
    }

    .contact-map-header p {
        margin-top: 8px;
        color: var(--muted);
    }

.contact-map-box iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
    filter: saturate(.95) contrast(1.02);
}

/* Form validation */
.success-message {
    padding: 14px 18px;
    border-radius: 18px;
    background: #ecfdf3;
    color: #067647;
    margin-bottom: 18px;
}

.error-message {
    padding: 14px 18px;
    border-radius: 18px;
    background: #fef3f2;
    color: #b42318;
    margin-bottom: 18px;
}

.field-error {
    display: block;
    color: #b42318;
    font-size: 13px;
    margin: -8px 0 10px 8px;
}

.input-validation-error {
    border-color: #b42318 !important;
}

/* Footer */
.site-footer {
    background: #091019;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 50px 0;
}

.footer-brand .brand-mark {
    background: rgba(255,255,255,.07);
}

.site-footer p {
    margin-top: 18px;
    color: rgba(255,255,255,.62);
    line-height: 1.85;
    font-size: 14px;
}

.site-footer h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .26em;
    color: rgba(255,255,255,.42);
    margin-bottom: 16px;
}

.site-footer a:not(.brand) {
    display: block;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    margin-bottom: 10px;
    transition: .25s;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 18px 0;
    background: #0e1620;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-bottom-left {
    font-size: 13px;
    color: rgba(255,255,255,.45);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.45);
}

    .footer-bottom-right a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #d8b889;
        font-weight: 500;
    }

        .footer-bottom-right a:hover {
            color: #ffffff;
        }

.developer-logo {
    height: 42px;
    width: auto;
    display: block;
    opacity: .9;
}

/* Multi page */
.page-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg,rgba(8,15,25,.86),rgba(8,15,25,.42)),url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1900&q=85') center/cover no-repeat;
    padding-top: 110px;
    overflow: hidden;
}

    .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right,rgba(215,180,125,.24),transparent 34%);
    }

    .page-hero .container {
        position: relative;
        z-index: 2;
    }

    .page-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: 60px;
        line-height: 1.05;
        letter-spacing: -.035em;
        font-weight: 600;
        max-width: 900px;
    }

    .page-hero p {
        margin-top: 20px;
        max-width: 720px;
        color: rgba(255,255,255,.78);
        font-size: 17px;
        line-height: 1.85;
    }

.about-hero {
    background-image: linear-gradient(90deg,rgba(8,15,25,.86),rgba(8,15,25,.42)),url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1900&q=85');
}

.services-hero {
    background-image: linear-gradient(90deg,rgba(8,15,25,.86),rgba(8,15,25,.42)),url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1900&q=85');
}

.contact-hero {
    background-image: linear-gradient(90deg,rgba(8,15,25,.86),rgba(8,15,25,.42)),url('https://images.unsplash.com/photo-1600047509358-9dc75507daeb?auto=format&fit=crop&w=1900&q=85');
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.service-list-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    min-height: 300px;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.05);
    transition: .25s;
}

    .service-list-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 58px rgba(13,22,33,.13);
    }

.service-list-image {
    background-size: cover;
    background-position: center;
}

.service-list-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .service-list-body span {
        font-size: 26px;
    }

    .service-list-body h2 {
        margin-top: 16px;
        font-size: 30px;
        font-weight: 400;
        letter-spacing: -.03em;
    }

    .service-list-body p {
        margin-top: 12px;
        color: var(--muted);
        line-height: 1.75;
    }

    .service-list-body strong {
        margin-top: 22px;
        color: var(--gold-2);
    }

.detail-hero {
    background-size: cover;
    background-position: center;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 28px;
}

.card-detail,
.detail-aside {
    background: #fff;
    border-radius: 34px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.05);
}

    .card-detail h2 {
        font-family: 'Playfair Display', serif;
        font-size: 46px;
        line-height: 1.15;
    }

    .card-detail p {
        margin-top: 18px;
        color: var(--muted);
        line-height: 1.9;
        font-size: 17px;
    }

    .detail-aside h3 {
        font-size: 28px;
        font-weight: 400;
        margin-bottom: 20px;
    }

    .detail-aside div {
        padding: 18px 20px;
        border-radius: 20px;
        background: var(--cream);
        margin-bottom: 12px;
        color: #384454;
    }

/* About process */
.about-process-showcase {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
    align-items: stretch;
}

.about-process-visual {
    position: relative;
    min-height: 560px;
    height: 100%;
}

.process-image-main {
    height: 100%;
    min-height: 560px;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(13,22,33,.05), rgba(13,22,33,.55)), url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1300&q=85') center/cover no-repeat;
    box-shadow: var(--shadow);
}

.process-floating-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 26px;
    border-radius: 28px;
    background: rgba(13,22,33,.78);
    backdrop-filter: blur(14px);
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
}

    .process-floating-card span {
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .28em;
        color: var(--gold);
        margin-bottom: 10px;
    }

    .process-floating-card strong {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        line-height: 1.25;
        font-weight: 500;
    }

.about-process-content {
    height: 100%;
    background: #fff;
    border-radius: 38px;
    padding: 42px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.05);
}

    .about-process-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 44px;
        line-height: 1.15;
        font-weight: 600;
        letter-spacing: -.02em;
    }

.process-steps-visual {
    margin-top: 30px;
    display: grid;
    gap: 14px;
}

.process-step-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: var(--cream);
    border: 1px solid rgba(0,0,0,.04);
    transition: .25s;
}

    .process-step-card:hover {
        transform: translateX(4px);
        background: #fff;
        box-shadow: 0 16px 40px rgba(13,22,33,.08);
    }

.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(175,138,85,.15);
    color: #af8a55;
    font-size: 24px;
    transition: .25s;
}

.process-step-card:hover .process-icon {
    background: var(--gold-2);
    color: #fff;
}

.process-step-card h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.02em;
}

.process-step-card p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

/* Floating offer */
.floating-offer-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 18px 11px;
    border-radius: 18px 0 0 18px;
    background: linear-gradient(135deg, var(--gold), #c79d5b);
    color: #111;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
    transition: .25s ease;
}

    .floating-offer-btn span {
        display: inline-block;
        transform: rotate(180deg);
    }

    .floating-offer-btn:hover {
        padding-right: 15px;
        color: #111;
        box-shadow: 0 24px 58px rgba(0,0,0,.30);
    }


.floating-call-btn {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border: none;
    cursor: pointer;
    padding: 18px 11px;
    border-radius: 18px 0 0 18px;
    background: linear-gradient(135deg, var(--gold), #c79d5b);
    color: #111;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
    transition: .25s ease;
}

    .floating-call-btn span {
        display: inline-block;
        transform: rotate(180deg);
    }

    .floating-call-btn:hover {
        padding-right: 15px;
        box-shadow: 0 24px 58px rgba(0,0,0,.30);
    }

.floating-call-panel {
    position: absolute;
    right: 56px;
    top: 50%;
    width: 245px;
    transform: translateY(-50%) translateX(18px);
    opacity: 0;
    pointer-events: none;
    padding: 22px;
    border-radius: 24px;
    background: rgba(13,22,33,.96);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
    box-shadow: 0 24px 70px rgba(0,0,0,.30);
    backdrop-filter: blur(14px);
    transition: .25s ease;
}

.floating-call-widget.open .floating-call-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.floating-call-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .24em;
    color: var(--gold);
}

.floating-call-name {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
}

.floating-call-phone {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

    .floating-call-phone:hover {
        color: var(--gold);
    }

.floating-call-link {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

    .floating-call-link:hover {
        background: #fff;
        color: #111;
    }
/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: all .72s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.delay-1 {
    transition-delay: .10s;
}

.delay-2 {
    transition-delay: .18s;
}
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1px;
    flex-shrink: 0;
}
.header-center {
    display: flex;
    justify-content: center;
}
.header-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}
    .header-contact span,
    .header-contact a {
        display: block;
    }
    .header-contact span {
        font-size: 10px;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: .16em;
        color: rgba(255,255,255,.56);
    }

    .header-contact a {
        margin-top: 3px;
        font-size: 14px;
        line-height: 1.1;
        font-weight: 800;
        color: #fff;
        white-space: nowrap;
        transition: .25s ease;
    }

        .header-contact a:hover {
            color: var(--gold);
        }

.btn,
.header-cta,
.floating-call-btn,
.floating-call-link {
    position: relative;
    overflow: hidden;
}

    .btn::before,
    .header-cta::before,
    .floating-call-link::before {
        content: "";
        position: absolute;
        top: 0;
        left: -80%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
        transform: skewX(-20deg);
        transition: .45s ease;
    }

    .btn:hover::before,
    .header-cta:hover::before,
    .floating-call-link:hover::before {
        left: 120%;
    }

    .btn:hover,
    .header-cta:hover,
    .floating-call-link:hover {
        transform: translateY(-2px);
    }

    .floating-call-btn:hover {
        transform: scale(1.03);
    }

.wa-btn {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 14px 36px rgba(0,0,0,.25);
    transition: .25s ease;
}

    .wa-btn::before {
        content: "💬";
        font-size: 18px;
    }

    .wa-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 48px rgba(0,0,0,.30);
    }

.portfolio-strip-section {
    background: var(--cream);
    padding: 28px 0 28px;
}

.portfolio-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 30px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.05);
}

    .portfolio-strip span {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .26em;
        color: var(--gold-2);
        font-weight: 700;
    }

    .portfolio-strip h2 {
        margin-top: 6px;
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        line-height: 1.22;
        font-weight: 600;
    }
.floating-call-link-gold {
    background: linear-gradient(135deg, var(--gold), #c79d5b);
    color: #111;
    border: none;
}

    .floating-call-link-gold:hover {
        background: #fff;
        color: #111;
    }
.floating-whatsapp-btn {
    position: fixed;
    right: 0;
    top: calc(50% - 96px);
    z-index: 1002;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 16px 11px;
    border-radius: 18px 0 0 18px;
    background: #25D366;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow: 0 18px 42px rgba(0,0,0,.22);
    transition: .25s ease;
}

    .floating-whatsapp-btn span {
        display: inline-block;
        transform: rotate(180deg);
    }

    .floating-whatsapp-btn::before {
        content: "💬";
        display: inline-block;
        margin-bottom: 8px;
        transform: rotate(180deg);
    }

    .floating-whatsapp-btn:hover {
        padding-right: 15px;
        color: #fff;
        box-shadow: 0 24px 58px rgba(0,0,0,.28);
    }

.floating-actions {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.floating-call-widget {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    z-index: auto;
}

.floating-portfolio-btn {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    z-index: auto;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 18px 11px;
    border-radius: 18px 0 0 18px;
    background: linear-gradient(135deg, var(--gold), #c79d5b);
    color: #111;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
    transition: .25s ease;
}

    .floating-portfolio-btn span {
        display: inline-block;
        transform: rotate(180deg);
    }

    .floating-portfolio-btn:hover {
        padding-right: 15px;
        color: #111;
        box-shadow: 0 24px 58px rgba(0,0,0,.30);
    }