﻿:root {
    --black: #0a0a08;
    --white: #f5f3ef;
    --gold: #b8965a;
    --gold-light: #d4b07a;
    --gold-pale: rgba(184, 150, 90, 0.12);
    --stone: #8a8070;
    --stone-light: #c8c0b0;
    --charcoal: #1e1e1a;
    --warm-gray: #2e2c28;
    --off-white: #f0ede6;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    /* cursor: none; */
}

/* ── CUSTOM CURSOR ── */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(184, 150, 90, .45);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
    width: 18px;
    height: 18px;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 52px;
    height: 52px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

/* ── PRELOADER ── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s .3s, visibility .6s .3s;
}

    #preloader.loaded {
        opacity: 0;
        visibility: hidden;
    }

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: .35em;
    color: var(--white);
}

    .preloader-logo span {
        color: var(--gold);
    }

.preloader-bar {
    width: 120px;
    height: 1px;
    background: rgba(184, 150, 90, .2);
    position: relative;
    overflow: hidden;
}

    .preloader-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gold);
        animation: preload 1.4s ease forwards;
    }

@keyframes preload {
    to {
        left: 100%;
    }
}

/* ── HEADER / NAV ── */
#header {
    background: rgba(10, 10, 8, 0.96);
    backdrop-filter: blur(20px);
    /* border-bottom: 1px solid rgba(184, 150, 90, 0.15); */
    border-bottom: 1px solid transparent;
    padding: 0;
    transition: background var(--transition), border-color var(--transition), padding var(--transition);
    z-index: 1000;
}

    #header.scrolled {
        background: rgba(10, 10, 8, .96);
        backdrop-filter: blur(20px);
        border-bottom-color: rgba(184, 150, 90, .15);
    }

    #header .container-fluid {
        padding: 22px 60px;
    }

    #header.scrolled .container-fluid {
        padding: 14px 60px;
    }

.logo {
    text-decoration: none;
}

.logo-icon {
    display: none !important;
}

.logo .sitename {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: .3em;
    color: var(--white);
    margin: 0;
}

/* .logo .sitename::after {
            content: 'Y';
            color: var(--gold);
        } */

/* Hide last char so we can colour it via pseudo — simpler override */
.logo .sitename {
    color: var(--white);
}

    .logo .sitename span {
        color: var(--gold);
    }

.navmenu ul {
    list-style: none;
    display: flex;
    gap: 36px;
    margin: 0;
    padding: 0;
}

.navmenu a,
.navmenu a:focus {
    font-family: var(--font-body);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--stone-light);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}

    .navmenu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform var(--transition);
    }

    .navmenu a:hover,
    .navmenu a.active {
        color: var(--gold);
    }

        .navmenu a:hover::after,
        .navmenu a.active::after {
            transform: scaleX(1);
            transform-origin: left;
        }

.navmenu .dropdown ul {
    background: rgba(10, 10, 8, .97);
    border: 1px solid rgba(184, 150, 90, .18);
    border-radius: 0;
    padding: 12px 0;
    min-width: 200px;
}

    .navmenu .dropdown ul a {
        padding: 10px 24px;
        display: block;
        font-size: .62rem;
    }

.header-actions .action-link {
    font-size: .65rem;
    letter-spacing: .15em;
    color: var(--stone-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}

    .header-actions .action-link:hover {
        color: var(--gold);
    }

    .header-actions .action-link i {
        color: var(--gold);
    }

.btn-quote {
    font-family: var(--font-body);
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 28px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    background: transparent;
    text-decoration: none !important;
    transition: background var(--transition), color var(--transition);
    /* cursor: none; */
}

    .btn-quote:hover {
        background: var(--gold);
        color: var(--black) !important;
    }

/* Mobile nav toggle */
.mobile-nav-toggle {
    color: var(--gold) !important;
    font-size: 1.4rem;
    cursor: pointer;
    display: none;
}

/* ── SECTION SHARED ── */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

    .section-title h2 {
        font-family: var(--font-display);
        font-size: clamp(2.2rem, 4vw, 3.6rem);
        font-weight: 300;
        color: var(--white);
        margin-bottom: 16px;
        position: relative;
        display: inline-block;
    }

        .section-title h2::after {
            content: '';
            display: block;
            width: 48px;
            height: 1px;
            background: var(--gold);
            margin: 16px auto 0;
        }

    .section-title p {
        font-size: .78rem;
        color: var(--stone);
        line-height: 1.9;
        max-width: 560px;
        margin: 0 auto;
    }

/* Light-bg sections */
.light-background {
    background: var(--charcoal) !important;
}

.dark-background {
    background: var(--warm-gray) !important;
}

.light-background .section-title h2 {
    color: var(--white);
}

/* Section label badge */
.section-label,
.label-tag,
.badge-label,
.tagline,
span.label-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
}

    .section-label i,
    .badge-label i {
        font-size: .7rem;
    }

    .section-label::before,
    .label-tag::before {
        content: '';
        display: block;
        width: 32px;
        height: 1px;
        background: var(--gold);
    }

/* ── HERO ── */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.22) saturate(.6);
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(10, 10, 8, .9) 55%, rgba(10, 10, 8, .35) 100%), radial-gradient(ellipse 70% 80% at 70% 50%, rgba(184, 150, 90, .06), transparent);
    }

    /* grid overlay */
    .hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background-image: linear-gradient(rgba(184, 150, 90, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 150, 90, .035) 1px, transparent 1px);
        background-size: 80px 80px;
        mask-image: radial-gradient(ellipse 60% 80% at 65% 50%, black 0%, transparent 80%);
    }

#hero .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.badge-label {
    margin-bottom: 28px;
    background: rgba(184, 150, 90, .1);
    border: 1px solid rgba(184, 150, 90, .25);
    padding: 8px 18px;
    border-radius: 0;
    display: inline-flex;
}

#hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6.5vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
}

    #hero h1 .accent {
        color: var(--gold-light);
        font-style: italic;
    }

#hero .lead {
    font-size: .8rem;
    color: var(--stone-light);
    line-height: 2;
    max-width: 480px;
    font-weight: 300;
    margin-bottom: 48px;
}

.btn-main {
    font-family: var(--font-body);
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px 44px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition);
    /* cursor: none; */
    border: none;
}

    .btn-main:hover {
        background: var(--gold-light);
        color: var(--black);
    }

.btn-outline {
    font-family: var(--font-body);
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 15px 36px;
    border: 1px solid rgba(184, 150, 90, .5);
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
    /* cursor: none; */
}

    .btn-outline:hover {
        border-color: var(--gold);
        background: var(--gold);
        color: var(--black);
    }

.hero-counters {
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid rgba(184, 150, 90, .18);
}

.counter-item h3 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 6px;
}

    .counter-item h3 .purecounter {
        color: var(--white);
    }

.counter-item p {
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
}

/* ── ABOUT ── */
#about {
    background: var(--off-white);
    color: var(--black);
}

    #about .section-label {
        color: var(--gold);
    }

        #about .section-label::before {
            background: var(--gold);
        }

.about-gallery {
    position: relative;
}

    .about-gallery .gallery-main {
        position: relative;
        z-index: 2;
        width: 80%;
    }

        .about-gallery .gallery-main img {
            width: 100%;
            display: block;
            filter: brightness(.92) saturate(.9);
        }

    .about-gallery .gallery-secondary {
        position: absolute;
        bottom: -40px;
        right: 0;
        z-index: 3;
        width: 52%;
        border: 4px solid var(--off-white);
    }

        .about-gallery .gallery-secondary img {
            width: 100%;
            display: block;
            filter: brightness(.88) saturate(.9);
        }

.experience-badge {
    position: absolute;
    top: 30px;
    left: -24px;
    z-index: 4;
    background: var(--gold);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 120px;
}

    .experience-badge .number {
        font-family: var(--font-display);
        font-size: 2.4rem;
        font-weight: 300;
        color: var(--black);
        line-height: 1;
    }

    .experience-badge .text {
        font-size: .58rem;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: rgba(0, 0, 0, .65);
        font-weight: 600;
        text-align: center;
    }

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: .8rem;
    color: #555048;
    line-height: 2;
    font-weight: 300;
    margin-bottom: 36px;
}

.highlight-item {
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, .08);
    transition: border-color var(--transition), transform var(--transition);
    display: grid;
}

    .highlight-item:hover {
        border-color: var(--gold);
        transform: translateY(-3px);
    }

.highlight-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

    .highlight-icon i {
        color: var(--black);
        font-size: 1.1rem;
    }

.highlight-item h4 {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: .72rem;
    color: #6a6560;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

.btn-about {
    font-family: var(--font-body);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px 40px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background var(--transition);
}

    .btn-about:hover {
        background: var(--charcoal);
        color: var(--white);
    }

.btn-about-outline {
    font-family: var(--font-body);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 14px 32px;
    border: 1px solid rgba(0, 0, 0, .25);
    color: var(--black);
    text-decoration: none;
    display: inline-block;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

    .btn-about-outline:hover {
        border-color: var(--black);
        background: var(--black);
        color: var(--white);
    }

.about-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 36px;
}

/* ── SERVICES ── */
#services {
    background: var(--charcoal);
}

    #services .section-title h2 {
        color: var(--white);
    }

    #services .section-title p {
        color: var(--stone);
    }

.services-image {
    position: relative;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

    .services-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.7) saturate(.8);
    }

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 8, .95) 0%, rgba(10, 10, 8, .3) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
}

    .image-overlay h3 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 300;
        color: var(--white);
        margin-bottom: 16px;
    }

.overlay-link {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap var(--transition);
}

    .overlay-link:hover {
        gap: 16px;
        color: var(--gold-light);
    }

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: var(--warm-gray);
    border: 1px solid rgba(184, 150, 90, 0);
    transition: border-color var(--transition), transform var(--transition);
}

    .service-item:hover {
        border-color: rgba(184, 150, 90, .35);
        transform: translateY(-2px);
    }

.service-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 1px solid rgba(184, 150, 90, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: background var(--transition), color var(--transition);
}

.service-item:hover .service-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.service-body h4 {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.service-body p {
    font-size: .73rem;
    color: var(--stone-light);
    line-height: 1.9;
    margin: 0;
    font-weight: 300;
}

/* ── STATS ── */
#stats {
    background: var(--black);
}

.stats-content .label-tag {
    color: var(--gold);
}

    .stats-content .label-tag::before {
        background: var(--gold);
    }

.stats-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.stats-content p {
    font-size: .78rem;
    color: var(--stone-light);
    line-height: 2;
    font-weight: 300;
    margin-bottom: 28px;
}

.stats-link {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap var(--transition);
}

    .stats-link:hover {
        gap: 16px;
    }

.counter-card {
    background: var(--charcoal);
    border: 1px solid rgba(184, 150, 90, .1);
    padding: 36px 28px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: border-color var(--transition);
}

    .counter-card:hover {
        border-color: rgba(184, 150, 90, .4);
    }

.counter-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(184, 150, 90, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
}

.counter-data h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1;
}

.counter-data p {
    font-size: .6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
    margin: 0;
}

/* ── PROJECTS ── */
#projects {
    background: var(--charcoal);
}

.portfolio-filters {
    list-style: none;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 48px;
}

    .portfolio-filters li {
        font-size: .62rem;
        letter-spacing: .18em;
        text-transform: uppercase;
        font-weight: 500;
        padding: 10px 22px;
        border: 1px solid rgba(184, 150, 90, .2);
        color: var(--stone);
        cursor: pointer;
        transition: all var(--transition);
    }

        .portfolio-filters li:hover,
        .portfolio-filters li.filter-active {
            border-color: var(--gold);
            color: var(--gold);
        }

.project-card {
    position: relative;
    overflow: hidden;
}

    .project-card img {
        width: 100%;
        display: block;
        filter: brightness(.75) saturate(.8);
        transition: transform .7s ease, filter .5s ease;
    }

    .project-card:hover img {
        transform: scale(1.06);
        filter: brightness(.55) saturate(.7);
    }

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 8, .96) 0%, rgba(10, 10, 8, .2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    opacity: 0;
    transition: opacity var(--transition);
}

.project-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    margin-top: auto;
}

    .card-content .tag {
        font-size: .58rem;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 500;
        display: block;
        margin-bottom: 8px;
    }

    .card-content h3 {
        font-family: var(--font-display);
        font-size: 1.4rem;
        font-weight: 400;
        color: var(--white);
        margin-bottom: 8px;
    }

    .card-content p {
        font-size: .7rem;
        color: var(--stone-light);
        font-weight: 300;
        margin: 0;
    }

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.card-action {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(184, 150, 90, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .9rem;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

    .card-action:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--black);
    }

/* ── PROCESS ── */
#process {
    background: var(--black);
}

.process-step {
    padding: 40px 32px;
    background: var(--charcoal);
    border-top: 2px solid transparent;
    transition: border-color var(--transition), transform var(--transition);
    height: 100%;
}

    .process-step:hover {
        border-top-color: var(--gold);
        transform: translateY(-4px);
    }

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(184, 150, 90, .15);
    line-height: 1;
    margin-bottom: 20px;
    transition: color var(--transition);
}

.process-step:hover .step-number {
    color: rgba(184, 150, 90, .35);
}

.step-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184, 150, 90, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    transition: background var(--transition);
}

.process-step:hover .step-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.process-step h3 {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.process-step p {
    font-size: .73rem;
    color: var(--stone-light);
    line-height: 1.9;
    font-weight: 300;
    margin: 0;
}

/* ── TEAM ── */
#team {
    background: var(--charcoal);
}

.member-card {
}

.member-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

    .member-img img {
        width: 100%;
        display: block;
        filter: grayscale(.4) brightness(.85);
        transition: transform .5s ease, filter .4s;
    }

.member-card:hover .member-img img {
    transform: scale(1.04);
    filter: grayscale(.1) brightness(.75);
}

.social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 8, .95), transparent);
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 16px 16px;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.member-card:hover .social-links {
    transform: translateY(0);
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(184, 150, 90, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .8rem;
    text-decoration: none;
    transition: background var(--transition);
}

    .social-links a:hover {
        background: var(--gold);
        color: var(--black);
    }

/* Gold accent bar */
.member-img::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.member-info h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
}

.member-info span {
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--black);
}

.testimonial-card {
    background: var(--charcoal);
    border: 1px solid rgba(184, 150, 90, .1);
    padding: 40px 36px;
    height: 100%;
    transition: border-color var(--transition);
}

    .testimonial-card:hover {
        border-color: rgba(184, 150, 90, .35);
    }

    .testimonial-card .stars {
        color: var(--gold);
        font-size: .8rem;
        margin-bottom: 20px;
        letter-spacing: 3px;
    }

    .testimonial-card p {
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-weight: 300;
        font-style: italic;
        color: var(--stone-light);
        line-height: 1.8;
        margin-bottom: 28px;
    }

.client-info img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    filter: grayscale(.3);
    object-fit: cover;
    border: 2px solid rgba(184, 150, 90, .3);
}

.client-info h4 {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.client-info span {
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
}

.gap-16 {
    gap: 16px;
}

.swiper-pagination-bullet {
    background: var(--stone) !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

/* ── FAQ ── */
#faq {
    background: var(--charcoal);
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(184, 150, 90, .15);
    position: relative;
    cursor: pointer;
}

    .faq-item h3 {
        font-family: var(--font-body);
        font-size: .78rem;
        font-weight: 600;
        letter-spacing: .06em;
        color: var(--white);
        padding-right: 40px;
        margin: 0;
        line-height: 1.6;
    }

    .faq-item .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease, padding .3s ease;
    }

    .faq-item.faq-active .faq-content {
        max-height: 200px;
    }

.faq-content p {
    font-size: .75rem;
    color: var(--stone-light);
    line-height: 2;
    font-weight: 300;
    padding-top: 14px;
    margin: 0;
}

.faq-toggle {
    position: absolute;
    right: 0;
    top: 26px;
    color: var(--gold);
    font-size: 1rem;
    transition: transform var(--transition);
}

.faq-item.faq-active .faq-toggle {
    transform: rotate(90deg);
}

/* ── CALL TO ACTION ── */
#call-to-action {
    background: var(--warm-gray) !important;
}

    #call-to-action .tagline {
        color: var(--gold);
    }

    #call-to-action h2 {
        font-family: var(--font-display);
        font-size: clamp(2rem, 3.5vw, 3rem);
        font-weight: 300;
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    #call-to-action p {
        font-size: .78rem;
        color: var(--stone-light);
        line-height: 2;
        font-weight: 300;
        margin-bottom: 28px;
    }

.highlight-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0;
}

.highlight-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(184, 150, 90, .12);
    transition: border-color var(--transition);
}

    .highlight-card:hover {
        border-color: rgba(184, 150, 90, .4);
    }

    .highlight-card .card-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        background: rgba(184, 150, 90, .15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 1rem;
    }

    .highlight-card h5 {
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 4px;
    }

    .highlight-card p {
        font-size: .7rem;
        color: var(--stone);
        margin: 0;
        font-weight: 300;
    }

.btn-get-started {
    font-family: var(--font-body);
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background var(--transition);
    border: none;
}

    .btn-get-started:hover {
        background: var(--gold-light);
        color: var(--black);
    }

.action-row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.phone-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.phone-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184, 150, 90, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.phone-label {
    font-size: .58rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--stone);
    display: block;
    margin-bottom: 2px;
}

.phone-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
}

.image-block {
    position: relative;
}

    .image-block .main-image img {
        width: 100%;
        display: block;
        filter: brightness(.65) saturate(.75);
    }

.counter-badge {
    position: absolute;
    bottom: 32px;
    left: -24px;
    background: var(--gold);
    padding: 22px 28px;
    text-align: center;
}

.counter-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1;
}

.counter-text {
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .65);
    font-weight: 600;
}

.accent-badge {
    position: absolute;
    top: 32px;
    right: -16px;
    background: var(--charcoal);
    border: 1px solid rgba(184, 150, 90, .3);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ── CONTACT ── */
#contact {
    background: var(--black) !important;
}

    #contact .section-title h2 {
        color: var(--white);
    }

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    padding: 24px;
    background: var(--charcoal);
    border: 1px solid rgba(184, 150, 90, .1);
    transition: border-color var(--transition);
}

    .info-card:hover {
        border-color: rgba(184, 150, 90, .35);
    }

.icon-box {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(184, 150, 90, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.info-card h4 {
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.info-card p {
    font-size: .75rem;
    color: var(--stone-light);
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

.contact-form-wrap {
    background: var(--charcoal);
    padding: 48px;
    border: 1px solid rgba(184, 150, 90, .1);
}

.form-control {
    background: rgba(255, 255, 255, .04) !important;
    border: 1px solid rgba(184, 150, 90, .2) !important;
    border-radius: 0 !important;
    padding: 14px 20px !important;
    color: var(--white) !important;
    font-family: var(--font-body) !important;
    font-size: .75rem !important;
    font-weight: 300 !important;
    transition: border-color var(--transition) !important;
}

    .form-control:focus {
        border-color: var(--gold) !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, .06) !important;
    }

    .form-control::placeholder {
        color: var(--stone) !important;
    }

    .form-control option {
        background: var(--black);
    }

.btn-submit {
    font-family: var(--font-body);
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px 48px;
    background: var(--gold);
    color: var(--black);
    border: none;
    cursor: none;
    transition: background var(--transition);
}

    .btn-submit:hover {
        background: var(--gold-light);
    }

.sent-message {
    color: var(--gold);
    font-size: .75rem;
}

.error-message {
    color: #e05555;
    font-size: .75rem;
}

/* ── FOOTER ── */
#footer {
    background: var(--black) !important;
    border-top: 1px solid rgba(184, 150, 90, .15) !important;
    padding: 60px 0 0;
}

.footer-about .sitename {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .28em;
    color: var(--white);
    text-decoration: none;
}

.footer-about p {
    font-size: .73rem;
    color: var(--stone);
    line-height: 1.9;
    font-weight: 300;
    margin-top: 16px;
}

.footer-about .social-links {
    position: static;
    transform: none !important;
    background: none;
    padding: 0;
    flex-wrap: wrap;
}

    .footer-about .social-links a {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(184, 150, 90, .3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--stone);
        font-size: .8rem;
        text-decoration: none;
        transition: all var(--transition);
    }

        .footer-about .social-links a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--black);
        }

.footer-links h4,
.footer-contact h4 {
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(184, 150, 90, .2);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-links ul a {
        font-size: .73rem;
        color: var(--stone);
        text-decoration: none;
        transition: color var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-links ul a::before {
            content: '';
            display: block;
            width: 12px;
            height: 1px;
            background: rgba(184, 150, 90, .4);
        }

        .footer-links ul a:hover {
            color: var(--gold);
        }

.footer-contact p {
    font-size: .73rem;
    color: var(--stone);
    margin-bottom: 6px;
    font-weight: 300;
}

.footer-contact strong {
    color: var(--stone-light);
}

.footer-contact a {
    color: var(--stone);
    text-decoration: none;
    transition: color var(--transition);
}

    .footer-contact a:hover {
        color: var(--gold);
    }

.copyright {
    border-top: 1px solid rgba(184, 150, 90, .1);
    padding: 20px 0;
    margin-top: 40px !important;
}

    .copyright p {
        font-size: .62rem;
        letter-spacing: .12em;
        color: var(--stone);
        margin: 0;
    }

    .copyright .sitename {
        color: var(--gold-light);
    }

.credits {
    font-size: .6rem;
    color: var(--stone);
    margin-top: 4px;
}

    .credits a {
        color: var(--stone);
        transition: color var(--transition);
    }

        .credits a:hover {
            color: var(--gold);
        }

/* ── SCROLL TOP ── */
#scroll-top {
    background: var(--gold) !important;
    color: var(--black) !important;
    border-radius: 0 !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
}

    #scroll-top:hover {
        background: var(--gold-light) !important;
    }

/* ── AOS OVERRIDES ── */
[data-aos] {
    pointer-events: none;
}

    [data-aos].aos-animate {
        pointer-events: auto;
    }

/* ============================================================
           ABOUT PAGE — ADDITIVE STYLES ONLY
           ============================================================ */

/* Page hero */
.page-hero {
    min-height: 72vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 80px;
    padding-top: 100px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0c09 0%, #1a1710 45%, #0c0b08 100%);
}

    .page-hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(184, 150, 90, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 150, 90, .04) 1px, transparent 1px);
        background-size: 100px 100px;
    }

    .page-hero-bg::after {
        content: 'E';
        position: absolute;
        right: -60px;
        top: -40px;
        font-family: var(--font-display);
        font-size: 52vw;
        font-weight: 600;
        line-height: 1;
        color: rgba(184, 150, 90, .028);
        user-select: none;
        pointer-events: none;
    }

.page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 60px;
}

.hero-eyebrow {
    font-size: .6rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 44px;
        height: 1px;
        background: var(--gold);
    }

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 300;
    line-height: .95;
    color: var(--white);
    margin-bottom: 0;
}

    .page-hero-title em {
        font-style: italic;
        color: var(--gold-light);
    }

    .page-hero-title .outline-text {
        -webkit-text-stroke: 1px rgba(184, 150, 90, .35);
        color: transparent;
    }

.page-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 48px;
}

.page-hero-desc {
    max-width: 420px;
    font-size: .78rem;
    color: var(--stone-light);
    line-height: 2;
    font-weight: 300;
}

.hero-year-badge {
    text-align: right;
}

    .hero-year-badge .year {
        font-family: var(--font-display);
        font-size: 4.5rem;
        font-weight: 300;
        color: rgba(184, 150, 90, .2);
        line-height: 1;
        display: block;
    }

    .hero-year-badge .year-label {
        font-size: .58rem;
        letter-spacing: .25em;
        text-transform: uppercase;
        color: var(--stone);
        font-weight: 500;
    }

/* Gold rule divider */
.gold-rule {
    display: block;
    height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(184, 150, 90, .1));
    margin: 0 60px;
}

/* Story section */
.story-section {
    background: var(--black);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-left {
    position: sticky;
    top: 120px;
}

.story-heading {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
}

    .story-heading em {
        font-style: italic;
        color: var(--gold-light);
    }

.story-pull {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    border-left: 2px solid var(--gold);
    padding-left: 32px;
    margin: 48px 0;
}

.story-body {
    font-size: .78rem;
    color: var(--stone-light);
    line-height: 2.1;
    font-weight: 300;
}

.timeline {
    margin-top: 48px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding-bottom: 48px;
    border-left: 1px solid rgba(184, 150, 90, .2);
    padding-left: 32px;
    margin-left: 40px;
    position: relative;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -5px;
        top: 6px;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--gold);
        box-shadow: 0 0 0 3px rgba(184, 150, 90, .15);
    }

    .timeline-item:last-child {
        border-left-color: transparent;
    }

.t-year {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.4;
}

.t-content h4 {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.t-content p {
    font-size: .73rem;
    color: var(--stone);
    line-height: 1.9;
    font-weight: 300;
    margin: 0;
}

/* Mission & Values */
.mission-section {
    background: var(--charcoal);
}

    .mission-section .section-title h2 {
        color: var(--white);
    }

    .mission-section .section-label {
        justify-content: center;
    }

        .mission-section .section-label::before {
            display: none;
        }

.mission-statement {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    text-align: center;
    margin-top: 24px;
}

    .mission-statement strong {
        font-style: normal;
        color: var(--gold-light);
        font-weight: 400;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 72px;
}

.value-card {
    background: var(--warm-gray);
    padding: 52px 40px;
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
}

    .value-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition);
    }

    .value-card:hover {
        background: #252420;
    }

        .value-card:hover::after {
            transform: scaleX(1);
        }

.value-num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(184, 150, 90, .1);
    line-height: 1;
    margin-bottom: 28px;
    transition: color var(--transition);
}

.value-card:hover .value-num {
    color: rgba(184, 150, 90, .22);
}

.value-name {
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.value-desc {
    font-size: .73rem;
    color: var(--stone-light);
    line-height: 1.9;
    font-weight: 300;
    margin: 0;
}

/* Team section on off-white bg */
.team-about {
    background: var(--off-white) !important;
}

    .team-about .section-title h2 {
        color: var(--black);
    }

        .team-about .section-title h2::after {
            background: var(--gold);
        }

    .team-about .section-title p {
        color: #6a6560;
    }

    .team-about .member-info h4 {
        color: var(--black);
    }

    .team-about .member-img img {
        filter: grayscale(.25) brightness(.88);
    }

.team-about-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
}

.team-about-header-left {
    max-width: 520px;
}

    .team-about-header-left .section-label {
        color: var(--gold);
    }

        .team-about-header-left .section-label::before {
            background: var(--gold);
        }

.team-about-heading {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--black);
}

    .team-about-heading em {
        font-style: italic;
        color: var(--gold);
    }

.team-about-header-right {
    font-size: .72rem;
    color: #7a7268;
    line-height: 1.9;
    max-width: 300px;
    text-align: right;
    font-weight: 300;
}

/* Featured CEO card spanning 2 columns */
.team-about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

    .team-about-grid .member-card:first-child {
        grid-column: span 2;
    }

        .team-about-grid .member-card:first-child .member-img {
            height: 520px;
        }

            .team-about-grid .member-card:first-child .member-img img {
                height: 100%;
                object-fit: cover;
                object-position: top;
            }

    .team-about-grid .member-card:not(:first-child) .member-img {
        height: 340px;
    }

        .team-about-grid .member-card:not(:first-child) .member-img img {
            height: 100%;
            object-fit: cover;
            object-position: top;
        }

    .team-about-grid .member-card:first-child .member-info h4 {
        font-size: 1.7rem;
        color: var(--black);
    }

.team-about .member-info h4 {
    color: var(--black);
}

.member-bio {
    font-size: .7rem;
    color: #6e6860;
    line-height: 1.9;
    font-weight: 300;
    margin: 8px 0 0;
}

/* CTA strip */
.cta-strip {
    background: var(--gold);
    padding: 72px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.cta-strip-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1.2;
}

    .cta-strip-text h2 em {
        font-style: italic;
    }

.cta-strip-text p {
    font-size: .78rem;
    color: rgba(0, 0, 0, .6);
    line-height: 2;
    font-weight: 400;
    margin-top: 16px;
    max-width: 500px;
}

.cta-strip-action {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.btn-dark {
    font-family: var(--font-body);
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px 44px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition);
    white-space: nowrap;
}

    .btn-dark:hover {
        background: var(--charcoal);
        color: var(--white);
    }

.cta-strip-note {
    font-size: .6rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .5);
    font-weight: 500;
}

/* ============================================================
           SERVICES PAGE — ADDITIVE STYLES ONLY
           ============================================================ */

/* Page hero */
.page-hero {
    min-height: 68vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 80px;
    padding-top: 100px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0c09 0%, #1a1710 45%, #0c0b08 100%);
}

    .page-hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(184, 150, 90, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 150, 90, .04) 1px, transparent 1px);
        background-size: 100px 100px;
    }

    /* Ghost letter */
    .page-hero-bg::after {
        content: 'S';
        position: absolute;
        right: -40px;
        top: -60px;
        font-family: var(--font-display);
        font-size: 52vw;
        font-weight: 600;
        line-height: 1;
        color: rgba(184, 150, 90, .028);
        user-select: none;
        pointer-events: none;
    }

.page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 60px;
}

.hero-eyebrow {
    font-size: .6rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 44px;
        height: 1px;
        background: var(--gold);
    }

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 300;
    line-height: .95;
    color: var(--white);
    margin-bottom: 0;
}

    .page-hero-title em {
        font-style: italic;
        color: var(--gold-light);
    }

    .page-hero-title .outline-text {
        -webkit-text-stroke: 1px rgba(184, 150, 90, .35);
        color: transparent;
    }

.page-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 48px;
}

.page-hero-desc {
    max-width: 440px;
    font-size: .78rem;
    color: var(--stone-light);
    line-height: 2;
    font-weight: 300;
}

.page-hero-meta {
    text-align: right;
}

    .page-hero-meta .meta-num {
        font-family: var(--font-display);
        font-size: 4.5rem;
        font-weight: 300;
        color: rgba(184, 150, 90, .2);
        line-height: 1;
        display: block;
    }

    .page-hero-meta .meta-label {
        font-size: .58rem;
        letter-spacing: .25em;
        text-transform: uppercase;
        color: var(--stone);
        font-weight: 500;
    }

/* Gold rule */
.gold-rule {
    display: block;
    height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(184, 150, 90, .1));
    margin: 0 60px;
}

/* ── SERVICE DETAIL CARDS ── */
.services-detail-section {
    background: var(--black);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.svc-card {
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
    transition: background var(--transition);
    overflow: hidden;
}

    .svc-card:hover {
        background: #222220;
    }

.svc-card-visual {
    position: relative;
    overflow: hidden;
    background: var(--warm-gray);
}

    .svc-card-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.55) saturate(.7);
        transition: transform .7s ease, filter .5s ease;
        display: block;
    }

.svc-card:hover .svc-card-visual img {
    transform: scale(1.06);
    filter: brightness(.4) saturate(.6);
}

/* Gradient fallback when no image */
.svc-visual-1 {
    background: linear-gradient(145deg, #1c1a14 0%, #2a2418 100%);
}

.svc-visual-2 {
    background: linear-gradient(145deg, #141820 0%, #1c2030 100%);
}

.svc-visual-3 {
    background: linear-gradient(145deg, #1a1c14 0%, #242814 100%);
}

.svc-visual-4 {
    background: linear-gradient(145deg, #1c1414 0%, #281c1c 100%);
}

.svc-visual-5 {
    background: linear-gradient(145deg, #141a1c 0%, #1c2428 100%);
}

.svc-visual-6 {
    background: linear-gradient(145deg, #1a1814 0%, #26221a 100%);
}

/* Grid overlay on visuals */
.svc-card-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(rgba(184, 150, 90, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 150, 90, .05) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Number watermark */
.svc-card-visual::after {
    content: attr(data-num);
    position: absolute;
    bottom: -16px;
    right: -8px;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(184, 150, 90, .12);
    user-select: none;
    pointer-events: none;
}

.svc-card-body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid rgba(184, 150, 90, .08);
    transition: border-color var(--transition);
}

.svc-card:hover .svc-card-body {
    border-left-color: rgba(184, 150, 90, .2);
}

.svc-card-top {
}

.svc-card-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(184, 150, 90, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 28px;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.svc-card:hover .svc-card-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.svc-card-name {
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.svc-card-desc {
    font-size: .75rem;
    color: var(--stone-light);
    line-height: 2;
    font-weight: 300;
    margin: 0 0 28px;
}

.svc-card-deliverables {
    margin-bottom: 32px;
}

.svc-card-deliverables-label {
    font-size: .58rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.svc-card-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .svc-card-deliverables ul li {
        font-size: .7rem;
        color: var(--stone-light);
        font-weight: 300;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .svc-card-deliverables ul li::before {
            content: '';
            display: block;
            width: 20px;
            height: 1px;
            background: rgba(184, 150, 90, .5);
            flex-shrink: 0;
        }

.svc-card-link {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap var(--transition);
    align-self: flex-start;
}

    .svc-card-link:hover {
        gap: 16px;
        color: var(--gold-light);
    }

/* Alternating visual/body layout for odd cards */
.svc-card:nth-child(odd) {
}

.svc-card:nth-child(even) .svc-card-visual {
    order: 2;
}

.svc-card:nth-child(even) .svc-card-body {
    order: 1;
    border-left: none;
    border-right: 1px solid rgba(184, 150, 90, .08);
}

.svc-card:nth-child(even):hover .svc-card-body {
    border-right-color: rgba(184, 150, 90, .2);
}

/* ── PROCESS ── */
.process-section {
    background: var(--charcoal);
}

    .process-section .section-title h2 {
        color: var(--white);
    }

/* ── FAQ ── */
.faq-section {
    background: var(--black);
}

    .faq-section .section-title h2 {
        color: var(--white);
    }

/* ── CTA STRIP ── */
.cta-strip {
    background: var(--gold);
    padding: 72px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.cta-strip-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1.2;
}

    .cta-strip-text h2 em {
        font-style: italic;
    }

.cta-strip-text p {
    font-size: .78rem;
    color: rgba(0, 0, 0, .6);
    line-height: 2;
    font-weight: 400;
    margin-top: 16px;
    max-width: 500px;
}

.cta-strip-action {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.btn-dark {
    font-family: var(--font-body);
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px 44px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition);
    white-space: nowrap;
}

    .btn-dark:hover {
        background: var(--charcoal);
        color: var(--white);
    }

.cta-strip-note {
    font-size: .6rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .5);
    font-weight: 500;
}

/* ============================================================
           PROJECTS PAGE — ADDITIVE STYLES ONLY
           ============================================================ */

/* Page hero */
.page-hero {
    min-height: 68vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 80px;
    padding-top: 100px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0c09 0%, #1a1710 45%, #0c0b08 100%);
}

    .page-hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(184, 150, 90, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 150, 90, .04) 1px, transparent 1px);
        background-size: 100px 100px;
    }

    .page-hero-bg::after {
        content: 'P';
        position: absolute;
        right: -40px;
        top: -60px;
        font-family: var(--font-display);
        font-size: 52vw;
        font-weight: 600;
        line-height: 1;
        color: rgba(184, 150, 90, .028);
        user-select: none;
        pointer-events: none;
    }

.page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 60px;
}

.hero-eyebrow {
    font-size: .6rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 44px;
        height: 1px;
        background: var(--gold);
    }

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 300;
    line-height: .95;
    color: var(--white);
    margin-bottom: 0;
}

    .page-hero-title em {
        font-style: italic;
        color: var(--gold-light);
    }

    .page-hero-title .outline-text {
        -webkit-text-stroke: 1px rgba(184, 150, 90, .35);
        color: transparent;
    }

.page-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 48px;
}

.page-hero-desc {
    max-width: 440px;
    font-size: .78rem;
    color: var(--stone-light);
    line-height: 2;
    font-weight: 300;
}

.page-hero-meta {
    text-align: right;
}

    .page-hero-meta .meta-num {
        font-family: var(--font-display);
        font-size: 4.5rem;
        font-weight: 300;
        color: rgba(184, 150, 90, .2);
        line-height: 1;
        display: block;
    }

    .page-hero-meta .meta-label {
        font-size: .58rem;
        letter-spacing: .25em;
        text-transform: uppercase;
        color: var(--stone);
        font-weight: 500;
    }

/* Gold rule */
.gold-rule {
    display: block;
    height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(184, 150, 90, .1));
    margin: 0 60px;
}

/* ── FEATURED PROJECT ── */
.featured-section {
    background: var(--black);
}

.featured-wrap {
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
}

.featured-img {
    position: absolute;
    inset: 0;
}

    .featured-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.45) saturate(.75);
        transition: transform .8s ease;
        display: block;
    }

.featured-wrap:hover .featured-img img {
    transform: scale(1.04);
}

.featured-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 8, .98) 0%, rgba(10, 10, 8, .5) 50%, rgba(10, 10, 8, .15) 100%);
}

.featured-body {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 60px;
    padding: 60px;
    width: 100%;
}

.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .58rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
}

    .featured-label::before {
        content: '';
        display: block;
        width: 32px;
        height: 1px;
        background: var(--gold);
    }

.featured-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

    .featured-title em {
        font-style: italic;
        color: var(--gold-light);
    }

.featured-meta {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.featured-meta-item {
}

    .featured-meta-item .meta-key {
        font-size: .55rem;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--stone);
        font-weight: 500;
        display: block;
        margin-bottom: 4px;
    }

    .featured-meta-item .meta-val {
        font-size: .75rem;
        color: var(--stone-light);
        font-weight: 400;
    }

.featured-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    flex-shrink: 0;
}

.btn-featured {
    font-family: var(--font-body);
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition);
    white-space: nowrap;
}

    .btn-featured:hover {
        background: var(--gold-light);
        color: var(--black);
    }

.btn-featured-outline {
    font-family: var(--font-body);
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 14px 32px;
    border: 1px solid rgba(184, 150, 90, .45);
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    white-space: nowrap;
}

    .btn-featured-outline:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--black);
    }

.featured-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 3;
    background: var(--gold);
    padding: 16px 22px;
    text-align: center;
}

.featured-badge-tag {
    font-size: .55rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
    display: block;
    margin-bottom: 2px;
}

.featured-badge-val {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1;
}

/* ── STATS STRIP ── */
.stats-strip {
    background: var(--charcoal);
    padding: 64px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.stats-strip-item {
    padding: 36px 40px;
    background: var(--warm-gray);
    border-top: 2px solid transparent;
    transition: border-color var(--transition);
}

    .stats-strip-item:hover {
        border-top-color: var(--gold);
    }

.stats-strip-num {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

    .stats-strip-num span {
        color: var(--gold);
        font-size: 2rem;
    }

.stats-strip-label {
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
}

.stats-strip-desc {
    font-size: .7rem;
    color: var(--stone-light);
    line-height: 1.8;
    font-weight: 300;
    margin-top: 8px;
}

/* ── PROJECTS GRID SECTION ── */
.projects-grid-section {
    background: var(--black);
}

.projects-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.projects-grid-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
}

    .projects-grid-heading em {
        font-style: italic;
        color: var(--gold-light);
    }

/* Masonry-style layout */
.projects-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 60px;
    gap: 8px;
}

/* Card sizing */
.pm-card-lg {
    grid-column: span 7;
    grid-row: span 7;
}

.pm-card-md {
    grid-column: span 5;
    grid-row: span 4;
}

.pm-card-sm {
    grid-column: span 4;
    grid-row: span 4;
}

.pm-card-sm2 {
    grid-column: span 5;
    grid-row: span 5;
}

.pm-card-sm3 {
    grid-column: span 3;
    grid-row: span 4;
}

.pm-card {
    position: relative;
    overflow: hidden;
    background: var(--warm-gray);
}

    .pm-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(.72) saturate(.75);
        transition: transform .7s ease, filter .5s ease;
    }

    .pm-card:hover img {
        transform: scale(1.07);
        filter: brightness(.5) saturate(.65);
    }

.pm-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 8, .97) 0%, rgba(10, 10, 8, .15) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity var(--transition);
}

.pm-card:hover .pm-card-overlay {
    opacity: 1;
}

.pm-card-tag {
    font-size: .55rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.pm-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.2;
}

.pm-card-lg .pm-card-title {
    font-size: 2rem;
}

.pm-card-detail {
    font-size: .65rem;
    color: var(--stone-light);
    font-weight: 300;
    margin-bottom: 16px;
}

.pm-card-actions {
    display: flex;
    gap: 8px;
}

/* Always-visible category badge (top-left) */
.pm-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: rgba(10, 10, 8, .75);
    border: 1px solid rgba(184, 150, 90, .3);
    padding: 6px 14px;
    font-size: .55rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--stone-light);
    font-weight: 500;
    backdrop-filter: blur(4px);
    transition: border-color var(--transition), color var(--transition);
}

.pm-card:hover .pm-card-badge {
    border-color: var(--gold);
    color: var(--gold);
}

/* Filter tabs */
.filter-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================================
           CONTACT PAGE — ADDITIVE STYLES ONLY
           ============================================================ */

/* PAGE HERO */
.page-hero {
    min-height: 68vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 80px;
    padding-top: 100px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0c09 0%, #1a1710 45%, #0c0b08 100%);
}

    .page-hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(184, 150, 90, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 150, 90, .04) 1px, transparent 1px);
        background-size: 100px 100px;
    }

    .page-hero-bg::after {
        content: 'C';
        position: absolute;
        right: -40px;
        top: -60px;
        font-family: var(--font-display);
        font-size: 52vw;
        font-weight: 600;
        line-height: 1;
        color: rgba(184, 150, 90, .028);
        user-select: none;
        pointer-events: none;
    }

.page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 60px;
}

.hero-eyebrow {
    font-size: .6rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 44px;
        height: 1px;
        background: var(--gold);
    }

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 300;
    line-height: .95;
    color: var(--white);
    margin-bottom: 0;
}

    .page-hero-title em {
        font-style: italic;
        color: var(--gold-light);
    }

    .page-hero-title .outline-text {
        -webkit-text-stroke: 1px rgba(184, 150, 90, .35);
        color: transparent;
    }

.page-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 48px;
}

.page-hero-desc {
    max-width: 440px;
    font-size: .78rem;
    color: var(--stone-light);
    line-height: 2;
    font-weight: 300;
}

.page-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.page-hero-scroll {
    font-size: .58rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .page-hero-scroll::after {
        content: '';
        display: block;
        width: 1px;
        height: 48px;
        background: linear-gradient(to bottom, var(--gold), transparent);
        animation: scrollPulse 2s infinite;
    }

@keyframes scrollPulse {

    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* GOLD RULE */
.gold-rule {
    display: block;
    height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(184, 150, 90, .1));
    margin: 0 60px;
}

/* ── CONTACT SPLIT LAYOUT ── */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

/* Left panel */
.contact-panel-left {
    background: var(--charcoal);
    padding: 100px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(184, 150, 90, .1);
}

.contact-panel-heading {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

    .contact-panel-heading em {
        font-style: italic;
        color: var(--gold-light);
    }

.contact-panel-body {
    font-size: .78rem;
    color: var(--stone-light);
    line-height: 2.1;
    font-weight: 300;
    margin-bottom: 56px;
}

/* Detail items */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(184, 150, 90, .1);
    transition: border-color var(--transition);
}

    .contact-detail-item:first-child {
        border-top: 1px solid rgba(184, 150, 90, .1);
    }

    .contact-detail-item:hover {
        border-bottom-color: rgba(184, 150, 90, .3);
    }

.contact-detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 1px solid rgba(184, 150, 90, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    transition: background var(--transition), border-color var(--transition);
}

.contact-detail-item:hover .contact-detail-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.contact-detail-label {
    font-size: .55rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.contact-detail-value {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 300;
    line-height: 1.5;
}

    .contact-detail-value a {
        color: var(--white);
        text-decoration: none;
        transition: color var(--transition);
    }

        .contact-detail-value a:hover {
            color: var(--gold);
        }

/* Social row */
.contact-social {
    display: flex;
    gap: 8px;
    margin-top: 56px;
}

    .contact-social a {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(184, 150, 90, .25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--stone);
        font-size: .85rem;
        text-decoration: none;
        transition: all var(--transition);
    }

        .contact-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--black);
        }

/* Right panel — form */
.contact-panel-right {
    background: var(--black);
    padding: 100px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

    .contact-form-heading em {
        font-style: italic;
        color: var(--gold-light);
    }

.contact-form-sub {
    font-size: .72rem;
    color: var(--stone);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 44px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-label {
    font-size: .55rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.form-note {
    font-size: .62rem;
    color: var(--stone);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .form-note i {
        color: var(--gold);
        font-size: .75rem;
    }

/* Enquiry type tabs */
.enquiry-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.enquiry-tab {
    font-size: .58rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 9px 18px;
    border: 1px solid rgba(184, 150, 90, .2);
    color: var(--stone);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
}

    .enquiry-tab.active,
    .enquiry-tab:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

/* ── OFFICES STRIP ── */
.offices-section {
    background: var(--charcoal);
    padding: 80px 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.office-card {
    background: var(--warm-gray);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
}

    .office-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition);
    }

    .office-card:hover {
        background: #252420;
    }

        .office-card:hover::after {
            transform: scaleX(1);
        }

.office-tag {
    font-size: .55rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.office-city {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1;
}

.office-address {
    font-size: .73rem;
    color: var(--stone-light);
    line-height: 2;
    font-weight: 300;
    margin-bottom: 24px;
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .office-contact a {
        font-size: .7rem;
        color: var(--stone);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: color var(--transition);
    }

        .office-contact a i {
            color: var(--gold);
            font-size: .75rem;
        }

        .office-contact a:hover {
            color: var(--gold);
        }

.office-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: .55rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
    border: 1px solid rgba(184, 150, 90, .2);
    padding: 6px 12px;
}

    .office-badge.hq {
        color: var(--gold);
        border-color: rgba(184, 150, 90, .45);
    }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .projects-masonry {
        grid-template-columns: repeat(6, 1fr);
    }

    .pm-card-lg {
        grid-column: span 6;
        grid-row: span 6;
    }

    .pm-card-md {
        grid-column: span 3;
        grid-row: span 4;
    }

    .pm-card-sm {
        grid-column: span 3;
        grid-row: span 4;
    }

    .pm-card-sm2 {
        grid-column: span 3;
        grid-row: span 4;
    }

    .pm-card-sm3 {
        grid-column: span 3;
        grid-row: span 4;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media(max-width:991px) {
    .navmenu ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 8, 0.97);
        border-left: 1px solid rgba(184, 150, 90, 0.15);
        padding: 80px 24px 24px;
        gap: 0;
        z-index: 9999;
        transition: right 0.3s ease;
    }

    body.mobile-nav-active .navmenu ul {
        display: flex;
        right: 0;
    }

    .navmenu ul li a {
        padding: 14px 0;
        display: block;
        border-bottom: 1px solid rgba(184, 150, 90, 0.1);
    }

    .btn-quote{
        visibility:hidden;
    }

    .mobile-nav-toggle {
        display: block;
        z-index: 10000;
    }
}

body.mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    right: 24px;
    top: 24px;
    z-index: 10001;
}

/* ── RESPONSIVE ── */
@media(max-width:991px) {
    #header .container-fluid {
        padding: 18px 24px;
    }

    /* .navmenu ul {
                display: none;
            } */

    .hero-bg::before {
        display: none;
    }

    #hero h1 {
        font-size: 2.8rem;
    }

    .contact-form-wrap {
        padding: 28px;
    }
    .page-hero-inner {
        padding: 0 24px;
    }

    .gold-rule {
        margin: 0 24px;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-left {
        position: static;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .team-about-grid .member-card:first-child {
            grid-column: span 2;
        }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .svc-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .svc-card-visual {
        min-height: 220px;
    }

    .svc-card:nth-child(even) .svc-card-visual {
        order: 0;
    }

    .svc-card:nth-child(even) .svc-card-body {
        order: 0;
        border-right: none;
        border-left: 1px solid rgba(184, 150, 90, .08);
    }

    .cta-strip {
        grid-template-columns: 1fr;
        padding: 56px 24px;
    }

    .cta-strip-action {
        align-items: flex-start;
    }

    .team-about-header {
        flex-direction: column;
        gap: 20px;
    }

    .team-about-header-right {
        text-align: left;
    }

    .featured-body {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 24px;
    }

    .featured-actions {
        align-items: flex-start;
    }

    .stats-strip {
        padding: 40px 24px;
    }

    .cta-strip {
        grid-template-columns: 1fr;
        padding: 56px 24px;
    }

    .cta-strip-action {
        align-items: flex-start;
    }

    .projects-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-panel-left {
        padding: 72px 28px;
        border-right: none;
        border-bottom: 1px solid rgba(184, 150, 90, .1);
    }

    .contact-panel-right {
        padding: 72px 28px;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

@media(max-width:575px) {
    section {
        padding: 72px 0;
    }

    #hero h1 {
        font-size: 2.2rem;
    }

    .counter-badge {
        left: 0;
        bottom: 0;
    }

    .page-hero-title {
        font-size: 3rem;
    }

    .page-hero-bottom {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }

    .team-about-grid {
        grid-template-columns: 1fr;
    }

        .team-about-grid .member-card:first-child {
            grid-column: span 1;
        }

    .experience-badge {
        left: 0;
    }

    .form-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
