:root {
    --cream: #f7f3ed;
    --sand: #ede8df;
    --stone: #d4ccc0;
    --charcoal: #1c1c1a;
    --charcoalink: #4e4e4e;
    --ink: #2d2d2a;
    --warm-gray: #6b6560;
    --taupe: #9a9187;
    --gold: #b8943f;
    --gold-lt: #d4ab56;
    --white: #fdfcf9;
    --accent: #3d5a47;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Jost', sans-serif;
    --book: 'EB Garamond', Georgia, serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);


}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--charcoal);
    color: var(--cream);
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--sand);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

/* CURSOR */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--charcoal);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .15s, height .15s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(28, 28, 26, .3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, border-color .3s;
}

.cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: var(--gold);
}

@media(max-width:768px) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding .5s var(--ease-out), background .5s;
}

nav.solid {
    background: rgba(247, 243, 237, .96);
    backdrop-filter: blur(20px);
    padding: 1.1rem 4rem;
    border-bottom: 1px solid rgba(184, 148, 63, .15);
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--charcoalink);
    text-decoration: none;
    letter-spacing: .01em;
}

.nav-logo sup {
    font-family: var(--san);
    font-size: .50rem;
    font-weight: 400;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    vertical-align: super;
    margin-left: .3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--warm-gray);
    text-decoration: none;
    transition: color .25s;
}

.nav-links a:hover {
    color: var(--charcoal);
}

.nav-cta {
    font-family: var(--sans);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--charcoal);
    padding: .7rem 1.8rem;
    text-decoration: none;
    border: 1px solid var(--charcoal);
    transition: background .3s, color .3s;
}

.nav-cta:hover {
    background: transparent;
    color: var(--charcoal);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--charcoal);
}

/* HERO */
#hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-left {
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5rem 4.5rem 5rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
    z-index: 0;
}

.hero-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--gold));
    z-index: 1;
}

.hero-left>* {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: var(--sans);
    font-size: .62rem;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    opacity: 0;
    animation: slideUp .9s var(--ease-out) .3s forwards;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.03;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUp .9s var(--ease-out) .5s forwards;
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero-tagline {
    font-family: var(--book);
    font-size: 1.02rem;
    font-style: italic;
    color: rgba(253, 252, 249, .5);
    max-width: 340px;
    line-height: 1.75;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: slideUp .9s var(--ease-out) .7s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    opacity: 0;
    animation: slideUp .9s var(--ease-out) .9s forwards;
}

.btn-gold-sm {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    font-family: var(--sans);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .9rem 2.2rem;
    text-decoration: none;
    transition: background .3s, transform .25s;
}

.btn-gold-sm:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
}

.btn-ghost-sm {
    display: inline-block;
    color: rgba(253, 252, 249, .55);
    font-family: var(--sans);
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(253, 252, 249, .2);
    padding-bottom: .1rem;
    transition: color .25s, border-color .25s;
}

.btn-ghost-sm:hover {
    color: var(--white);
    border-color: var(--gold);
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right-inner {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: 60% 40%;
}

.hero-img-top {
    background: url('img/Modernhome.png') center/cover no-repeat;
}

.hero-img-bot {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-img-bot-a {
    background: url('img/bevhills.jpg') center/cover no-repeat;
    transform: scale(1.06);
    animation: zoomOut 8s var(--ease-out) .2s forwards;
}

.hero-img-bot-b {
    background: url('img/Luxxe.jfif') center/cover no-repeat;
    transform: scale(1.06);
    animation: zoomOut 8s var(--ease-out) .2s forwards;
}

.hero-img-bot-c {
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
}

.hs-num {
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1;
    color: var(--charcoal);
}

.hs-label {
    font-family: var(--sans);
    font-size: .58rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--taupe);
    text-align: center;
}

.hero-photo-tag {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(247, 243, 237, .92);
    backdrop-filter: blur(12px);
    padding: 1rem 1.4rem;
    opacity: 0;
    animation: slideUp .8s var(--ease-out) 1.2s forwards;
}

.hpt-line {
    font-family: var(--sans);
    font-size: .55rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .25rem;
}

.hpt-val {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--charcoal);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    z-index: 10;
    opacity: 0;
    animation: slideUp .8s var(--ease-out) 1.4s forwards;
}

.scroll-indicator span {
    font-family: var(--sans);
    font-size: .52rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    writing-mode: vertical-rl;
}

.scroll-track {
    width: 1px;
    height: 46px;
    background: rgba(184, 148, 63, .25);
    position: relative;
    overflow: hidden;
}

.scroll-fill {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollDrop 1.6s ease-in-out 1.7s infinite;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1);
    }
}

@keyframes scrollDrop {
    0% {
        top: -100%;
    }

    70% {
        top: 100%;
    }

    100% {
        top: 100%;
    }
}

/* TICKER */
.ticker {
    background: var(--charcoal);
    padding: .85rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(184, 148, 63, .15);
    border-bottom: 1px solid rgba(184, 148, 63, .15);
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 32s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 2rem;
    font-family: var(--sans);
    font-size: .62rem;
    font-weight: 300;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(253, 252, 249, .35);
}

.ticker-item b {
    color: var(--gold);
    font-weight: 400;
}

.tdot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(184, 148, 63, .35);
    display: inline-block;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SHARED UTILS */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: .12s;
}

.reveal-delay-2 {
    transition-delay: .24s;
}

.reveal-delay-3 {
    transition-delay: .38s;
}

.reveal-delay-4 {
    transition-delay: .52s;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section-kicker {
    font-family: var(--sans);
    font-size: .6rem;
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.section-kicker::before {
    content: '';
    display: block;
    width: 1.75rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 3.8vw, 3.6rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

/* INTRO */
#intro {
    padding: 9rem 0;
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 7rem;
    align-items: center;
}

.intro-left {
    position: relative;
}

.intro-portrait {
    width: 100%;
    aspect-ratio: 4/5;
    background: url('img/Kian Shahidi HS1.png') center top/cover;
    position: relative;
}

.intro-portrait::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 55%;
    height: 55%;
    border: 1px solid rgba(184, 148, 63, .28);
    z-index: -1;
}

.intro-badge {
    position: absolute;
    top: 2.5rem;
    left: -2rem;
    width: 110px;
    height: 110px;
    background: var(--charcoal);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 16px 48px rgba(28, 28, 26, .2);
}

.ib-num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.ib-label {
    font-family: var(--sans);
    font-size: .45rem;
    font-weight: 300;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(253, 252, 249, .45);
    margin-top: .2rem;
}

.intro-quote {
    font-family: var(--book);
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--charcoal);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
}

.intro-body {
    font-family: var(--sans);
    font-size: .95rem;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 2.5rem;
}

.pill {
    font-family: var(--sans);
    font-size: .6rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border: 1px solid var(--stone);
    color: var(--taupe);
    transition: border-color .25s, color .25s;
}

.pill:hover {
    border-color: var(--gold);
    color: var(--charcoal);
}

.intro-cta {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1.5px solid var(--charcoal);
    padding-bottom: .15rem;
    transition: color .25s, border-color .25s;
}

.intro-cta:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.intro-cta svg {
    transition: transform .3s;
}

.intro-cta:hover svg {
    transform: translateX(4px);
}

/* STATS */
#stats {
    background: var(--charcoal);
    padding: 4.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(255, 255, 255, .06);
}

.stat-box {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, .06);
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    text-align: center;
    transition: background .3s;
}

.stat-box:hover {
    background: rgba(184, 148, 63, .06);
}

.stat-big {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--gold-lt);
    line-height: 1;
}

.stat-desc {
    font-family: var(--sans);
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(253, 252, 249, .3);
    margin-top: .65rem;
    line-height: 1.55;
}

/* PILLARS */
#pillars {
    background: var(--sand);
    padding: 9rem 0;
}

.pillars-head {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 5.5rem;
}

.pillars-head .section-kicker {
    justify-content: center;
}

.pillars-head p {
    font-family: var(--book);
    font-size: 1.02rem;
    font-style: italic;
    color: var(--warm-gray);
    margin-top: 1rem;
    line-height: 1.75;
}

.pillar-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 440px;
    margin-bottom: 1px;
    border: 1px solid rgba(184, 148, 63, .1);
}

.pillar-row.rev .pillar-img {
    order: 2;
}

.pillar-row.rev .pillar-content {
    order: 1;
}

.pillar-img {
    position: relative;
    overflow: hidden;
}

.pillar-img-inner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s var(--ease-out);
}

.pillar-row:hover .pillar-img-inner {
    transform: scale(1.05);
}

.p1-img {
    background-image: url('img/Kian Shahidi BM1.png');
}

.p2-img {
    background-image: url('img/Kian Shahidi Spk.png');
}

.p3-img {
    background-image: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?w=900&q=80&auto=format&fit=crop');
}

.pillar-content {
    background: var(--white);
    padding: 4.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pillar-num {
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: 400;
    color: rgba(184, 148, 63, .1);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.pillar-title {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: .9rem;
    line-height: 1.2;
}

.pillar-title em {
    font-style: italic;
    color: var(--gold);
}

.pillar-text {
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.85;
    margin-bottom: 1.75rem;
}

.pillar-quote {
    font-family: var(--book);
    font-size: .95rem;
    font-style: italic;
    color: var(--taupe);
    padding: .7rem 1rem;
    border-left: 2px solid var(--stone);
    line-height: 1.65;
}

/* SERVICES */
#services {
    background: var(--cream);
    padding: 9rem 0;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 5rem;
}

.services-sub {
    font-family: var(--sans);
    font-size: .93rem;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.85;
    max-width: 400px;
    margin-left: auto;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.svc-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border: 1px solid var(--stone);
    position: relative;
    overflow: hidden;
    transition: border-color .35s, transform .4s var(--ease-out), box-shadow .4s;
}

.svc-card:hover {
    border-color: var(--gold);
    transform: translateY(-7px);
    box-shadow: 0 24px 64px rgba(28, 28, 26, .08);
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease-out);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.75rem;
    color: var(--gold);
}

.svc-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: .7rem;
}

.svc-text {
    font-family: var(--sans);
    font-size: .87rem;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.8;
}

/* TESTIMONIALS */
#testimonials {
    background: var(--charcoal);
    padding: 9rem 0;
    overflow: hidden;
}

.testi-head {
    text-align: center;
    margin-bottom: 5rem;
}

.testi-head .section-title {
    color: var(--white);
}

.testi-head .section-kicker {
    justify-content: center;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testi-card {
    padding: 3.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, .07);
    transition: border-color .35s, background .35s;
}

.testi-card:hover {
    border-color: rgba(184, 148, 63, .3);
    background: rgba(184, 148, 63, .04);
}

.testi-qmark {
    font-family: var(--serif);
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(184, 148, 63, .18);
    margin-bottom: 1.25rem;
}

.testi-text {
    font-family: var(--book);
    font-size: 1.03rem;
    font-style: italic;
    color: rgba(253, 252, 249, .72);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(184, 148, 63, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: .85rem;
    color: var(--gold-lt);
    background: rgba(184, 148, 63, .07);
}

.testi-name {
    font-family: var(--sans);
    font-size: .85rem;
    font-weight: 400;
    color: var(--white);
}

.testi-loc {
    font-family: var(--sans);
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .12em;
    color: rgba(253, 252, 249, .28);
    text-transform: uppercase;
    margin-top: .15rem;
}

/* PROCESS */
#process {
    background: var(--sand);
    padding: 9rem 0;
}

.process-head {
    max-width: 540px;
    margin-bottom: 5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 7%;
    right: 7%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--stone) 10%, var(--stone) 90%, transparent);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    padding: 0 1.5rem;
}

.ps-num {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: .62rem;
    font-weight: 400;
    letter-spacing: .1em;
    color: var(--gold);
    background: var(--sand);
    margin-bottom: 1.75rem;
}

.ps-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: .55rem;
}

.ps-text {
    font-family: var(--sans);
    font-size: .85rem;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.75;
}

/* CTA BAND */
#cta-band {
    background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1800&q=80&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    padding: 10rem 0;
}

#cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28, 28, 26, .72);
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.cta-label {
    font-family: var(--sans);
    font-size: .62rem;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.cta-headline {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-headline em {
    font-style: italic;
    color: var(--gold-lt);
}

.cta-sub {
    font-family: var(--book);
    font-size: 1.03rem;
    font-style: italic;
    color: rgba(253, 252, 249, .5);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cta-btns {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
}

.btn-gold-lg {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    font-family: var(--sans);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .95rem 2.5rem;
    text-decoration: none;
    transition: background .3s, transform .25s;
}

.btn-gold-lg:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
}

.btn-outline-wh {
    display: inline-block;
    color: rgba(253, 252, 249, .6);
    font-family: var(--sans);
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(253, 252, 249, .22);
    padding: .95rem 2.5rem;
    transition: border-color .25s, color .25s;
}

.btn-outline-wh:hover {
    border-color: var(--gold);
    color: var(--white);
}

/* CONTACT */
#contact {
    background: var(--cream);
    padding: 9rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 7rem;
    align-items: start;
}

.contact-intro {
    font-family: var(--sans);
    font-size: .93rem;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.85;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cd-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    text-decoration: none;
    color: inherit;
    padding: 1.2rem;
    border: 1px solid var(--stone);
    transition: border-color .25s, background .25s;
}

.cd-item:hover {
    border-color: var(--gold);
    background: var(--white);
}

.cd-icon {
    color: var(--gold);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: .15rem;
}

.cd-label {
    font-family: var(--sans);
    font-size: .58rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: .15rem;
}

.cd-val {
    font-family: var(--sans);
    font-size: .93rem;
    font-weight: 400;
    color: var(--charcoal);
}

.trust-bar {
    background: var(--charcoal);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.tb-text {
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 300;
    color: rgba(253, 252, 249, .45);
    line-height: 1.6;
}

.tb-text strong {
    color: rgba(253, 252, 249, .8);
    font-weight: 400;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.field label {
    display: block;
    font-family: var(--sans);
    font-size: .58rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: .4rem;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--stone);
    color: var(--charcoal);
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 300;
    padding: .85rem 1rem;
    outline: none;
    transition: border-color .25s;
    -webkit-appearance: none;
}

.field select option {
    background: var(--white);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--gold);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-btn {
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--sans);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: background .3s, transform .25s;
    align-self: flex-start;
}

.form-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    background: var(--ink);
    padding: 4rem 4rem 2.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: .4rem;
}

.footer-brand-tag {
    font-family: var(--sans);
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .22);
    margin-bottom: 1.25rem;
}

.footer-brand-desc {
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .28);
    line-height: 1.75;
}

.footer-col-title {
    font-family: var(--sans);
    font-size: .58rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.footer-links a {
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    transition: color .25s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-family: var(--sans);
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .18);
}

.footer-dre {
    font-family: var(--sans);
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .15);
}

/* MOBILE */
@media(max-width:1024px) {
    nav {
        padding: 1.5rem 2rem;
    }

    nav.solid {
        padding: 1rem 2rem;
    }

    .container {
        padding: 0 2rem;
    }

    #hero {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-left {
        padding: 7rem 2rem 4.5rem;
    }

    .hero-right {
        min-height: 60vw;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillar-row {
        grid-template-columns: 1fr;
    }

    .pillar-img {
        min-height: 260px;
    }

    .pillar-row.rev .pillar-img,
    .pillar-row.rev .pillar-content {
        order: 0;
    }

    .services-header {
        grid-template-columns: 1fr;
    }

    .services-sub {
        margin-left: 0;
        max-width: none;
    }

    .svc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .process-steps::before {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }
}

@media(max-width:640px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .cta-btns {
        flex-direction: column;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: .6rem;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}
