﻿:root {
    --gold: #B8955A;
    --gold-lt: #D4B07A;
    --dark: #0E0E0E;
    --mid: #1C1C1C;
    --off: #F5F1EB;
    --white: #FFFFFF;
    --grey: #888;
    --body: #2E2E2E;
    --ease: cubic-bezier(.77,0,.18,1);
}

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

html,body {
    overflow-x:hidden;
}

body {
    font-family: 'Jost',sans-serif;
    background: var(--white);
    color: var(--body);
    overflow-x: hidden
}

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

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

/* PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity .8s,visibility .8s
}

    #preloader.out {
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

.pre-glass {
    width: 130px;
    height: 130px;
    border-radius: 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(184,149,90,.4);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 80px rgba(184,149,90,.2),inset 0 1px 0 rgba(255,255,255,.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    animation: pglow 2s ease-in-out infinite
}

@keyframes pglow {
    0%,100% {
        box-shadow: 0 0 80px rgba(184,149,90,.2)
    }

    50% {
        box-shadow: 0 0 120px rgba(184,149,90,.45)
    }
}

.pre-glass .mono {
    font-family: 'Playfair Display',serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px
}

.pre-glass .ptag {
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(0,0,0,1);
    text-align: center;
}

.pre-line {
    width: 220px;
    height: 1px;
    background: rgba(255,255,255,.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .pre-line::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,transparent,var(--gold),transparent);
        animation: scan 2s linear infinite
    }

@keyframes scan {
    to {
        left: 100%
    }
}

.pre-text {
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(0,0,0,1);
    text-align: center;
}

/* TOP BAR */
/* ===== TOPBAR ===== */
.topbar {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

/* LEFT */
.left-tb {
    display: flex;
    align-items: center;
    gap: 12px;
}

.left-tb a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

    .left-tb i {
        color: #572e2c; /* premium gold */
    }

/* SEPARATOR */
.sep {
    color: #ccc;
}

/* ===== SOCIAL ===== */
.tb-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #333;
    margin-left: 15px;
    transition: 0.3s;
}

    .tb-social a:hover {
        background: #572e2c;
        border-color: #572e2c;
        color: #fff;
    }


/* ===== MOBILE ===== */
@media (max-width: 767px) {
    .topbar {
        display: none !important;
    }
}
/* HEADER */
#site-header {
    background: rgb(87 46 44);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 990;
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: box-shadow .4s
}

    #site-header.scrolled {
        box-shadow: 0 4px 30px rgba(0,0,0,.1)
    }

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
}

/* LOGO */
.site-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0
}

.logo-mark {
    width: 160px;
    border-radius: 9px;
    /*background: linear-gradient(135deg,var(--dark),var(--gold));*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display',serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0
}

.logo-txt .brand {
    font-family: 'Playfair Display',serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: .3px
}

.logo-txt .tagline {
    font-size: 16.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #572e2c;
    display: block;
    margin-top: 2px
}

/* DESKTOP NAV */
.desk-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
    margin-bottom:0;
}

    .desk-nav > li {
        position: relative
    }

        .desk-nav > li > a {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 12.5px;
            font-weight: 500;
            letter-spacing: .6px;
            text-transform: uppercase;
            color: #fff;
            padding: 10px 14px;
            transition: color .25s;
            white-space: nowrap;
            position: relative
        }

            .desk-nav > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 14px;
                right: 14px;
                height: 2px;
                background: var(--white);
                transform: scaleX(0);
                transform-origin: center;
                transition: transform .35s var(--ease)
            }

            .desk-nav > li > a:hover, .desk-nav > li.active > a {
                color: #fff;
            }

                .desk-nav > li > a:hover::after, .desk-nav > li.active > a::after {
                    transform: scaleX(1)
                }
/* chevron - inline with text */
.chev {
    display: inline-flex;
    align-items: center;
    font-size: 9px;
    line-height: 1;
    margin-top: 1px;
    transition: transform .3s;
    flex-shrink: 0
}

.desk-nav > li:hover > a .chev {
    transform: rotate(180deg)
}

/* DROPDOWN */
.drop {
    position: absolute;
    top: calc(100% + 6px);
    list-style: none;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border: 1px solid rgba(0,0,0,.08);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 8px 8px;
    min-width: 220px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s,transform .3s,visibility .3s;
    z-index: 200;
    padding: 6px 0
}

.desk-nav > li:hover .drop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.drop a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--body);
    transition: all .2s;
    white-space: nowrap
}

    .drop a:hover {
        background: var(--off);
        color: var(--gold);
        padding-left: 26px
    }

.drop .sub-li {
    position: relative
}

    .drop .sub-li > a::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 9px;
        color: var(--grey)
    }

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--white);
    list-style: none;
    border: 1px solid rgba(0,0,0,.08);
    border-top: 2px solid var(--gold);
    min-width: 190px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s,visibility .25s;
    padding: 6px 0
}

.drop .sub-li:hover .submenu {
    opacity: 1;
    visibility: visible
}

/* HEADER CTA */
.hdr-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.btn-hdr {
    font-size: 11.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 2px;
    transition: all .3s;
    white-space: nowrap;
    display: inline-block
}

    .btn-hdr.solid {
        background: #fdf8dc;
        color: #000;
        border: 1px solid #572e2c;
    }

        .btn-hdr.solid:hover {
            background: #e9d158;
            border-color: #e9d158
        }

    .btn-hdr.outline {
        background: transparent;
        color: #fff;
        border: 1px solid #fff
    }

        .btn-hdr.outline:hover {
            border-color: #e9d158;
            color: #e9d158
        }
@media(max-width:768px) {
    #site-header {
        background:#fff
    }
    .logo-mark {
        width:90px;
    }
    .logo-txt .brand {
        font-size:15px;
    }
    .logo-txt .tagline 
    {
        font-size:7.5px;
    }
}

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    flex-shrink: 0
}

    .burger span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--dark);
        transition: all .35s;
        transform-origin: center
    }

    .burger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0)
    }

    .burger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

/* MOBILE NAV */
#mob-nav {
    position: fixed;
    inset: 0;
    top:0;
    z-index: 980;
    background: var(--dark);
    transform: translateX(100%);
    transition: transform .55s var(--ease);
    overflow-y: auto;
    padding: 82px 28px 40px
}

    #mob-nav.open {
        transform: translateX(0)
    }

.mob-list {
    list-style: none
}

    .mob-list > li {
        border-bottom: 1px solid rgba(255,255,255,.06)
    }

        .mob-list > li > .mob-row {
            display: flex;
            align-items: center;
            justify-content: space-between
        }

            .mob-list > li > .mob-row > a {
                padding: 16px 0;
                font-size: 18px;
                font-family: 'Playfair Display',serif;
                color: rgba(255,255,255,.85);
                flex: 1;
                transition: color .3s
            }

                .mob-list > li > .mob-row > a:hover {
                    color: var(--gold)
                }

.mob-acc {
    background: none;
    border: none;
    color: rgba(255,255,255,1);
    font-size: 12px;
    padding: 8px;
    cursor: pointer;
    transition: color .3s
}

    .mob-acc:hover {
        color: var(--gold)
    }

.mob-sub {
    display: none;
    padding: 4px 0 16px 14px
}

    .mob-sub.open {
        display: block
    }

    .mob-sub a {
        display: block;
        padding: 8px 0;
        font-size: 14px;
        color: rgba(255,255,255,1);
        transition: color .3s
    }

        .mob-sub a:hover {
            color: var(--gold)
        }

.mob-ctas {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .mob-ctas .btn-hdr {
        display: block;
        text-align: center;
        padding: 13px
    }

/* HERO */
#hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 580px;
    overflow: hidden
}

.h-slide {
    position: absolute;
    inset: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path .88s var(--ease);
    z-index: 1
}

    .h-slide.is-active {
        clip-path: inset(0 0% 0 0);
        z-index: 2
    }

    .h-slide.is-leaving {
        z-index: 3;
        animation: leaveRight .88s var(--ease) forwards
    }

@keyframes leaveRight {
    to {
        clip-path: inset(0 0 0 100%)
    }
}

.h-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 7s ease
}

.h-slide.is-active .h-bg {
    transform: scale(1)
}

.h-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,rgba(0,0,0,.3) 0%,rgba(0,0,0,.1) 45%,rgba(0,0,0,.72) 100%)
}

/* Caption — bottom-left Hanover style */
.h-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 5% 90px;
    z-index: 5
}

.cap-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e9d158;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s .5s,transform .7s .5s
}

    .cap-tag::before {
        content: '';
        width: 28px;
        height: 1px;
        background: #e9d158;
        flex-shrink: 0
    }

.h-slide.is-active .cap-tag {
    opacity: 1;
    transform: none
}

.cap-h1 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(34px,5.5vw,78px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.08;
    max-width: 800px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s .65s,transform .8s .65s
}

.h-slide.is-active .cap-h1 {
    opacity: 1;
    transform: none
}

.cap-h1 em {
    font-style: italic;
    color: #e9d158
}

.cap-rule {
    width: 0;
    height: 1px;
    background: rgba(255,255,255,.3);
    margin: 20px 0;
    transition: width .8s .85s ease
}

.h-slide.is-active .cap-rule {
    width: 70px
}

.cap-p {
    font-size: 15.5px;
    color: rgba(255,255,255,.72);
    max-width: 500px;
    line-height: 1.78;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s .95s,transform .7s .95s
}

.h-slide.is-active .cap-p {
    opacity: 1;
    transform: none
}

.cap-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s 1.1s,transform .7s 1.1s
}

.h-slide.is-active .cap-btns {
    opacity: 1;
    transform: none
}

.btn-gold {
    font-size: 11.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    background: #572e2c;
    color: var(--white);
    padding: 13px 34px;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
    transition: background .3s;
    display: inline-block
}

    .btn-gold:hover {
        background: var(--dark);
        color: var(--white)
    }
.btn-gold-2 {
    font-size: 11.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    background: #fdf8dc;
    color: #000;
    padding: 13px 34px;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
    transition: background .3s;
    display: inline-block
}

    .btn-gold-2:hover {
        background: #fff;
        color: #000
    }

.btn-ghost {
    font-size: 11.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,1);
    transition: all .3s;
    display: inline-block
}

    .btn-ghost:hover {
        border-color: #fdf8dc;
        color: #fdf8dc
    }

/* Slide count label (right side) */
.h-count {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(255,255,255,.28);
    pointer-events: none
}

    .h-count .cur {
        color: var(--white);
        font-weight: 600;
        font-size: 13px
    }

    .h-count .sep-line {
        width: 1px;
        height: 36px;
        background: rgba(255,255,255,.15)
    }

/* Dots + Arrows — bottom right, ABOVE caption */
.h-ctrl {
    position: absolute;
    right: 5%;
    bottom: 28px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 14px
}

.h-arr {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.28);
    background: transparent;
    color: var(--white);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    flex-shrink: 0
}

    .h-arr:hover {
        background: var(--gold);
        border-color: var(--gold)
    }

.h-dots {
    display: flex;
    align-items: center;
    gap: 8px
}

.h-dot {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0
}

    .h-dot span {
        font-size: 11px;
        font-weight: 600;
        color: rgba(255,255,255,.35);
        z-index: 2;
        transition: color .3s
    }

    .h-dot.on span {
        color: var(--white)
    }

    .h-dot svg {
        position: absolute;
        inset: 0;
        transform: rotate(-90deg)
    }

        .h-dot svg .bg-c {
            fill: none;
            stroke: rgba(255,255,255,.15);
            stroke-width: 1.5
        }

        .h-dot svg .fg-c {
            fill: none;
            stroke: var(--gold);
            stroke-width: 1.5;
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            transition: stroke-dashoffset 0s
        }

    .h-dot.on svg .fg-c {
        animation: fillRing var(--dur,5.5s) linear forwards
    }

@keyframes fillRing {
    to {
        stroke-dashoffset: 0
    }
}

/* TICKER */
.ticker {
    background: #cba900;
    padding: 11px 0;
    overflow: hidden
}

.t-inner {
    display: flex;
    white-space: nowrap;
    animation: tick 28s linear infinite
}

    .t-inner span {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #fff;
        padding: 0 44px
    }

        .t-inner span::after {
            content: '◆';
            margin-left: 44px;
            opacity: 1;
        }

@keyframes tick {
    to {
        transform: translateX(-50%)
    }
}

/* SECTIONS */
section {
    padding: 108px 0
}

.sec-tag {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #572e2c;
    font-weight: 500;
    display: block;
    margin-bottom: 10px
}

.sec-h {
    font-family: 'Playfair Display',serif;
    font-size: clamp(30px,3.5vw,52px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--dark)
}

    .sec-h em {
        font-style: italic;
        color: #572e2c;
    }

.sec-rule {
    width: 46px;
    height: 1px;
    background: var(--gold);
    margin: 18px 0 26px
}

.sec-body {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--grey)
}

/* ABOUT */
.about-wrap {
    background: var(--white)
}

.ab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px
}

.ab-img {
    position: relative;
    overflow: hidden
}

    .ab-img img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.ab-badge {
    position: absolute;
    bottom: 28px;
    right: -18px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #572e2c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 50px rgba(184,149,90,.45)
}

    .ab-badge strong {
        font-family: 'Playfair Display',serif;
        font-size: 40px;
        font-weight: 700;
        color: var(--white);
        line-height: 1
    }

    .ab-badge span {
        font-size: 9px;
        letter-spacing: 3px;
        color: rgba(255,255,255,.75);
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5
    }

.ab-copy {
    background: #572e2c;
    padding: 76px 64px 76px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.ab-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 38px;
    background: rgba(255,255,255,1)
}

.ab-stat {
    padding: 20px 18px;
    background: #572e2c;
}

    .ab-stat .sn {
        font-family: 'Playfair Display',serif;
        font-size: 36px;
        font-weight: 300;
        color: #e9d158;
        line-height: 1;
        display: flex;
        align-items: flex-end;
        gap: 2px
    }

        .ab-stat .sn sup {
            font-size: .42em;
            margin-bottom: 5px
        }

    .ab-stat .sl {
        font-size: 10.5px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255,255,255,1);
        margin-top: 5px
    }

/* WHY US */
.why-sec {
    background: #fdf8dc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: rgba(0,0,0,.08);
    margin-top: 58px
}

.wc {
    background: var(--white);
    padding: 46px 34px;
    transition: all .45s;
    position: relative;
    overflow: hidden
}

    .wc::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #572e2c;
        transform: translateY(101%);
        transition: transform .5s var(--ease);
        z-index: 0
    }

    .wc:hover::before {
        transform: translateY(0)
    }

    .wc > * {
        position: relative;
        z-index: 1
    }

.wc-ico {
    width: 52px;
    height: 52px;
    border-radius: 11px;
    background: #fdf8dc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #572e2c;
    margin-bottom: 22px;
    transition: background .4s
}

.wc:hover .wc-ico {
    background: #fdf8dc
}

.wc h4 {
    font-family: 'Playfair Display',serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    transition: color .4s
}

.wc p {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--grey);
    transition: color .4s
}

.wc:hover h4, .wc:hover p {
    color: rgba(255,255,255,1)
}

.wc:hover h4 {
    color: var(--white)
}

/* PROJECTS */
.proj-sec {
    background: #572e2c;
    padding: 108px 0
}

.proj-hdr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    flex-wrap: wrap;
    gap: 18px
}

.proj-tabs {
    display: flex;
    border: 1px solid rgba(255,255,255,1);
    overflow: hidden;
    border-radius: 2px
}

.ptab {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    color: rgba(255,255,255,1);
    border-right: 1px solid rgba(255,255,255,1);
    transition: all .3s
}

    .ptab:last-child {
        border-right: none
    }

    .ptab.on {
        background: #fdf8dc;
        color: #000
    }
/* mosaic */
.proj-mosaic {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    grid-template-rows: 340px 290px;
    gap: 3px
}

.pi:nth-child(1) {
    grid-column: 1/6;
    grid-row: 1
}

.pi:nth-child(2) {
    grid-column: 6/9;
    grid-row: 1
}

.pi:nth-child(3) {
    grid-column: 9/13;
    grid-row: 1
}

.pi:nth-child(4) {
    grid-column: 1/5;
    grid-row: 2
}

.pi:nth-child(5) {
    grid-column: 5/9;
    grid-row: 2
}

.pi:nth-child(6) {
    grid-column: 9/13;
    grid-row: 2
}

.pi {
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.pi-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease)
}

.pi:hover .pi-img {
    transform: scale(1.07)
}

.pi-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,.88) 0%,transparent 55%);
    transition: background .4s
}

.pi:hover .pi-veil {
    background: linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.3) 100%)
}

.pi-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 20px;
    transform: translateY(6px);
    transition: transform .4s
}

.pi:hover .pi-info {
    transform: none
}

.pi-no {
    font-size: 10.5px;
    letter-spacing: 3px;
    color: #fdf8dc;
    margin-bottom: 5px;
    font-weight: 500
}

.pi-name {
    font-family: 'Playfair Display',serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2
}

.pi-loc {
    font-size: 11.5px;
    color: rgba(255,255,255,1);
    margin-top: 4px
}

.pi-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fdf8dc;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s .1s,transform .35s .1s
}

.pi:hover .pi-cta {
    opacity: 1;
    transform: none
}

.pi-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 2px
}

    .pi-badge.new {
        background: #fdf8dc;
        color: #000;
    }

    .pi-badge.rtm {
        background: rgba(255,255,255,.14);
        backdrop-filter: blur(8px);
        color: var(--white)
    }

/* OVERVIEW */
.ov-sec {
    background: #fdf8dc
}

.ov-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.ov-imgs {
    position: relative;
    padding-bottom: 55px;
    padding-right: 55px
}

.ov-main {
    border-radius: 4px;
    overflow: hidden
}

.ov-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    border-radius: 4px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 14px 50px rgba(0,0,0,.13)
}

.ov-pill {
    position: absolute;
    top: 26px;
    left: -16px;
    background: #572e2c;
    padding: 18px 22px;
    border-radius: 4px;
    box-shadow: 0 8px 36px rgba(184,149,90,.4);
    text-align: center
}

    .ov-pill strong {
        font-family: 'Playfair Display',serif;
        font-size: 30px;
        color: var(--white);
        display: block;
        line-height: 1
    }

    .ov-pill span {
        font-size: 9.5px;
        letter-spacing: 3px;
        color: rgba(255,255,255,1);
        text-transform: uppercase
    }

.ov-list {
    list-style: none;
    margin-top: 26px
}

    .ov-list li {
        display: flex;
        align-items: flex-start;
        gap: 13px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0,0,0,.05);
        font-size: 14.5px;
        color: var(--body);
        line-height: 1.6
    }

        .ov-list li:last-child {
            border-bottom: none
        }

.ov-ico {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: #fdf8dc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #572e2c;
    font-size: 12.5px;
    flex-shrink: 0;
    margin-top: 2px
}

/* COUNTER */
.ctr-sec {
    background: #572e2c;
    padding: 76px 0
}

.ctr-row {
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

.ctr-cell {
    text-align: center;
    padding: 28px 16px;
    border-right: 1px solid rgba(255,255,255,.25)
}

    .ctr-cell:last-child {
        border-right: none
    }

.ctr-n {
    font-family: 'Playfair Display',serif;
    font-size: clamp(48px,5vw,68px);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    display: inline-flex;
    align-items: flex-end;
    gap: 2px
}

    .ctr-n sup {
        font-size: .4em;
        margin-bottom: 10px
    }

    .ctr-n .sf {
        font-size: .48em;
        margin-bottom: 8px
    }

.ctr-l {
    font-size: 11.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,1);
    margin-top: 9px
}

/* TESTIMONIALS */
.testi-sec {
    background: #fdf8dc
}

.t-hdr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px
}

.t-nav-d {
    display: flex;
    gap: 10px
}

.t-arr {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #572e2c;
    background: transparent;
    color: #572e2c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all .3s
}

    .t-arr:hover {
        background: #572e2c;
        border-color: #572e2c;
        color: var(--white)
    }

.t-track-wrap {
    overflow: hidden
}

.t-track {
    display: flex;
    transition: transform .65s var(--ease)
}

.t-slide {
    flex: 0 0 calc(33.333% - 16px);
    margin-right: 24px
}

.t-card {
    background: var(--white);
    border-radius: 4px;
    padding: 38px 34px;
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: border-color .35s,box-shadow .35s;
    box-shadow: 0 4px 28px rgba(0,0,0,.06)
}

    .t-card:hover {
        border-color: #572e2c;
        box-shadow: 0 14px 50px rgba(0,0,0,.1)
    }

.t-q {
    font-size: 60px;
    font-family: 'Playfair Display',serif;
    color: #572e2c;
    line-height: .7;
    margin-bottom: 14px;
    opacity: 1
}

.t-txt {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--body);
    font-style: italic;
    margin-bottom: 26px
}

.t-au {
    display: flex;
    align-items: center;
    gap: 13px
}

.t-ava {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #572e2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display',serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0
}

.t-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark)
}

.t-role {
    font-size: 11.5px;
    color: var(--grey)
}

.t-dots-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px
}

.t-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,1);
    cursor: pointer;
    transition: all .3s
}

    .t-dot.on {
        background: #572e2c;
        width: 22px;
        border-radius: 4px
    }

/* FOOTER */
footer {
    background: #572e2c;
}

.ft-top {
    padding: 78px 0 58px;
    border-bottom: 1px solid rgba(255,255,255,.06)
}

.ft-brand-name {
    font-family: 'Playfair Display',serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white)
}

.ft-brand-tag {
    font-size: 8.5px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fdf8dc;
    margin-top: 3px;
    display: block
}

.ft-desc {
    font-size: 13.5px;
    line-height: 1.8;
    color: rgba(255,255,255,1);
    margin-top: 16px
}

.ft-soc {
    display: flex;
    gap: 9px;
    margin-top: 22px
}

    .ft-soc a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,1);
        color: rgba(255,255,255,1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        transition: all .3s
    }

        .ft-soc a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--white)
        }

.ft-h {
    font-family: 'Playfair Display',serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255,255,255,1)
}

.ft-ul {
    list-style: none;
    padding-left: 0;
}

    .ft-ul li {
        margin-bottom: 10px
    }

    .ft-ul a {
        font-size: 13px;
        color: rgba(255,255,255,1);
        display: flex;
        align-items: center;
        gap: 7px;
        transition: all .3s
    }

        .ft-ul a::before {
            content: '→';
            font-size: 13px;
            color:#fdf8dc;
            opacity:1;
            flex-shrink: 0
        }

        .ft-ul a:hover {
            color: var(--gold);
            padding-left: 3px
        }

.ft-ci {
    display: flex;
    gap: 13px;
    margin-bottom: 16px;
    align-items: flex-start
}

    .ft-ci .ci {
        color: #fdf8dc;
        font-size: 13px;
        margin-top: 2px;
        flex-shrink: 0
    }

    .ft-ci p {
        font-size: 13px;
        color: rgba(255,255,255,1);
        line-height: 1.65;
        margin: 0
    }

.ft-bottom {
    padding: 16px 0;
    text-align: center;
    font-size: 11.5px;
    letter-spacing: .5px;
    color: rgba(255,255,255,1)
}

    .ft-bottom a {
        color: #fdf8dc
    }

/* SCROLL REVEAL */
[data-r] {
    opacity: 0
}

[data-r="up"] {
    transform: translateY(48px)
}

[data-r="left"] {
    transform: translateX(-48px)
}

[data-r="right"] {
    transform: translateX(48px)
}

[data-r].vis {
    opacity: 1;
    transform: none;
    transition: opacity .9s ease,transform .9s ease
}

    [data-r].vis.d1 {
        transition-delay: .1s
    }

    [data-r].vis.d2 {
        transition-delay: .2s
    }

    [data-r].vis.d3 {
        transition-delay: .3s
    }

    [data-r].vis.d4 {
        transition-delay: .4s
    }

    [data-r].vis.d5 {
        transition-delay: .5s
    }

/* CURTAIN */
.ctn {
    position: relative;
    overflow: hidden
}

    .ctn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--off);
        transform: translateX(0);
        transition: transform .9s var(--ease);
        z-index: 4;
        pointer-events: none
    }

    .ctn.ctn-up::after {
        background: var(--white);
        transform: translateY(0)
    }

    .ctn.done::after {
        transform: translateX(101%)
    }

    .ctn.ctn-up.done::after {
        transform: translateY(101%)
    }

/* RESPONSIVE */
@media(max-width:1199px) {
    .desk-nav > li > a {
        padding: 10px 11px;
        font-size: 12px
    }

    .ab-copy {
        padding: 58px 44px
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .proj-mosaic {
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: unset
    }

    .pi {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 270px
    }

    .ov-split {
        grid-template-columns: 1fr;
        gap: 56px
    }

    .ov-imgs {
        max-width: 540px;
        margin: 0 auto;
        padding-bottom: 48px;
        padding-right: 48px
    }

    .ctr-row {
        grid-template-columns: repeat(2,1fr)
    }

    .ctr-cell {
        border-bottom: 1px solid rgba(255,255,255,.25)
    }

        .ctr-cell:nth-child(even) {
            border-right: none
        }
}

@media(max-width:991px) {
    .ab-grid {
        grid-template-columns: 1fr
    }

    .ab-img {
        height: 360px
    }

    .ab-copy {
        padding: 56px 36px
    }

    .ab-badge {
        right: 8px
    }

    .desk-nav-wrap, .hdr-cta {
        display: none !important
    }

    .burger {
        display: flex
    }

    section {
        padding: 80px 0
    }

    .t-slide {
        flex: 0 0 calc(50% - 12px)
    }

    .t-nav-d {
        display: none
    }
}

@media(max-width:767px) {
    .proj-mosaic {
        grid-template-columns: 1fr
    }

    .pi {
        height: 250px
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .ctr-row {
        grid-template-columns: repeat(2,1fr)
    }

    .topbar .left-tb {
        display: none
    }

    section {
        padding: 64px 0
    }

    .ab-copy {
        padding: 44px 22px
    }

    .t-slide {
        flex: 0 0 calc(100%)
    }

    .proj-tabs {
        display: none
    }

    .h-count {
        display: none
    }

    .h-cap {
        padding: 40px 5% 96px
    }

    .ov-imgs {
        max-width: 100%;
        padding-bottom: 42px;
        padding-right: 42px
    }
}

@media(max-width:575px) {
    .cap-btns .btn-ghost {
        display: none
    }

    .ctr-row {
        grid-template-columns: 1fr 1fr
    }

    .ov-pill {
        left: -10px
    }
}
