.home-hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: #111;
    color: #fff;
}

.home-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 56%;
}

.home-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .38) 48%, rgba(0, 0, 0, .05) 82%);
}

.home-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 145px;
    padding-bottom: 135px;
}

.home-hero-kicker {
    margin: 0 0 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .24em;
}

.home-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(42px, 3vw, 54px);
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: .025em;
}

.home-hero-intro {
    max-width: 590px;
    margin: 25px 0 31px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-hero-button {
    display: inline-block;
    padding: 13px 22px;
    border: 1px solid rgba(255, 255, 255, .9);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .13em;
    transition: background .2s ease, color .2s ease;
}

.home-hero-button:hover,
.home-hero-button:focus {
    background: #fff;
    color: #111;
    text-decoration: none;
}

.home-hero-button-light {
    background: #fff;
    color: #111;
}

.home-hero-button-light:hover,
.home-hero-button-light:focus {
    background: transparent;
    color: #fff;
}

.home-welcome {
    padding: 54px 0 48px !important;
    background: #000;
    color: #ddd;
    text-align: center;
}

.home-welcome h2 {
    margin: 0 0 25px;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: .05em;
}

.home-welcome p {
    margin: 0 auto 16px;
    color: #d0d0d0;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: .02em;
    text-align: center;
    text-transform: none;
}

.archive-showcase {
    padding: 72px 28px 80px;
    background: #f4f2ee;
    color: #111;
}

.archive-showcase-heading {
    margin-bottom: 38px;
    text-align: center;
}

.archive-showcase-heading p {
    margin: 0 0 12px;
    font-size: 10px;
    letter-spacing: .24em;
}

.archive-showcase-heading h2 {
    margin: 0;
    color: #111;
    font-size: 27px;
    font-weight: 400;
    letter-spacing: .055em;
}

.archive-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    grid-template-rows: 350px 330px;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

.archive-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #171717;
}

.archive-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.archive-grid figure:hover img {
    transform: scale(1.025);
}

.archive-grid figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 38px 24px 19px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .68));
    color: #fff;
    font-size: 11px;
    letter-spacing: .15em;
}

.archive-grid figcaption span {
    margin-right: 10px;
    color: rgba(255, 255, 255, .62);
}

.archive-residence {
    grid-row: 1 / 3;
}

.archive-bedroom {
    grid-column: 2;
    grid-row: 1;
}

.archive-lower {
    display: grid;
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.archive-statement {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 45px;
    background: #111;
    color: #fff;
}

.archive-statement p {
    margin: 0 0 32px;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: .08em;
}

.archive-statement a {
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    color: #fff;
    font-size: 10px;
    letter-spacing: .15em;
}

.selected-projects {
    padding: 82px 18px 78px;
    background: #fff;
    color: #111;
}

.selected-projects-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.selected-projects-heading p {
    margin: 0 0 12px;
    font-size: 10px;
    letter-spacing: .24em;
}

.selected-projects-heading h2 {
    margin: 0 0 15px;
    color: #111;
    font-size: 29px;
    font-weight: 400;
    letter-spacing: .055em;
}

.selected-projects-heading span {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.selected-projects-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr 1fr;
    grid-template-rows: 330px 330px;
    grid-auto-rows: 330px;
    gap: 12px;
    max-width: 1450px;
    margin: 0 auto;
}

.selected-project {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: #141414;
}

.selected-project-wide {
    grid-row: 1 / 3;
}

.selected-project-tall {
    grid-column: 3;
    grid-row: 1 / 3;
}

.selected-project-landscape {
    grid-column: 2 / 4;
}

.selected-project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.selected-project-wide img {
    object-position: 55% center;
}

.selected-project-tall img {
    object-position: center;
}

.selected-project::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.78));
    content: '';
}

.selected-project span {
    position: absolute;
    z-index: 1;
    right: 28px;
    bottom: 25px;
    left: 28px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .08em;
}

.selected-project small {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.78);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .16em;
}

.selected-project:hover img,
.selected-project:focus img {
    transform: scale(1.035);
    filter: brightness(.92);
}

.selected-projects-action {
    margin-top: 38px;
    text-align: center;
}

.selected-projects-action a {
    display: inline-block;
    padding: 13px 23px;
    border: 1px solid #111;
    color: #111;
    font-size: 10px;
    letter-spacing: .14em;
}

.selected-projects-action a:hover,
.selected-projects-action a:focus {
    background: #111;
    color: #fff;
    text-decoration: none;
}

.home-credentials {
    padding: 54px 0 48px;
    background: #0b0b0b;
}

.credentials-heading {
    margin-bottom: 27px;
    color: #fff;
    font-size: 12px;
    letter-spacing: .18em;
    text-align: center;
}

.home-credentials .counter.well {
    min-height: 190px;
    margin-bottom: 18px;
    padding: 31px 20px 24px;
    border: 1px solid #333;
    border-radius: 0;
    box-shadow: none;
}

.home-credentials .counter i {
    color: #b89b5e;
    font-size: 31px;
}

.home-credentials .counter h2 {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: .04em;
}

.home-credentials .counter p {
    color: #aaa;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bespoke-showcase {
    padding: 70px 0 72px;
    background: #000;
    color: #fff;
}

.bespoke-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.bespoke-heading p {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: .24em;
}

.bespoke-heading h2 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: .05em;
}

.bespoke-heading span {
    color: #bbb;
    font-size: 14px;
}

.bespoke-grid figure {
    margin: 0;
    background: #111;
}

.bespoke-grid img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    filter: saturate(.72);
}

.bespoke-grid figcaption {
    padding: 18px 10px;
    color: #fff;
    font-size: 12px;
    letter-spacing: .12em;
    text-align: center;
}

.bespoke-action {
    margin-top: 36px;
    text-align: center;
}

.bespoke-action a {
    display: inline-block;
    padding: 13px 22px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 11px;
    letter-spacing: .13em;
}

.bespoke-action a:hover,
.bespoke-action a:focus {
    background: #fff;
    color: #111;
    text-decoration: none;
}

.founder-intro {
    overflow: hidden;
    background: #111;
    color: #fff;
}

.founder-intro-row {
    display: flex;
    align-items: stretch;
}

.founder-intro-image,
.founder-intro-copy {
    padding: 0;
}

.founder-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    object-position: center 22%;
    filter: saturate(.75);
}

.founder-intro-copy {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 70px 8vw;
}

.founder-intro-copy p {
    margin: 0 0 18px;
    color: #b89b5e;
    font-size: 9px;
    letter-spacing: .22em;
}

.founder-intro-copy h2 {
    margin: 0 0 25px;
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: .05em;
}

.founder-intro-copy div {
    max-width: 690px;
    color: #c8c8c8;
    font-size: 14px;
    line-height: 1.9;
}

.founder-intro-copy a {
    align-self: flex-start;
    margin-top: 30px;
    padding-bottom: 6px;
    border-bottom: 1px solid #aaa;
    color: #fff;
    font-size: 10px;
    letter-spacing: .15em;
}

@media (max-width: 767px) {
    .home-hero {
        min-height: 570px;
    }

    .home-hero > img {
        object-position: 62% center;
    }

    .home-hero-shade {
        background: linear-gradient(90deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .35));
    }

    .home-hero-content {
        padding-top: 105px;
        padding-bottom: 85px;
    }

    .home-hero-kicker {
        font-size: 10px;
        line-height: 1.7;
    }

    .home-hero h1 {
        font-size: 32px;
        line-height: 1.22;
    }

    .home-hero-intro {
        max-width: 330px;
        font-size: 15px;
    }

    .home-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-welcome {
        padding: 43px 5px 37px !important;
    }

    .home-welcome h2 {
        font-size: 21px;
        line-height: 1.4;
    }

    .archive-showcase {
        padding: 50px 15px 58px;
    }

    .archive-showcase-heading {
        margin-bottom: 28px;
    }

    .archive-showcase-heading h2 {
        font-size: 21px;
        line-height: 1.4;
    }

    .archive-grid {
        display: block;
    }

    .archive-grid figure {
        height: 310px;
        margin-bottom: 12px;
    }

    .archive-residence {
        height: 500px !important;
    }

    .archive-lower {
        display: block;
    }

    .archive-statement {
        min-height: 260px;
        padding: 38px 30px;
    }

    .selected-projects {
        padding: 54px 5px 58px;
    }

    .selected-projects-heading {
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .selected-projects-heading h2 {
        font-size: 23px;
    }

    .selected-projects-grid {
        display: block;
    }

    .selected-project {
        display: block;
        height: 330px;
        margin-bottom: 8px;
    }

    .selected-project-wide {
        height: 440px;
    }

    .selected-project-tall {
        height: 390px;
    }

    .selected-project-landscape {
        height: 340px;
    }

    .selected-project span {
        right: 20px;
        bottom: 20px;
        left: 20px;
        font-size: 16px;
    }

    .home-credentials {
        padding: 44px 5px 38px;
    }

    .bespoke-showcase {
        padding: 52px 0;
    }

    .bespoke-heading {
        padding: 0 20px;
    }

    .bespoke-heading h2 {
        font-size: 22px;
        line-height: 1.35;
    }

    .bespoke-grid .col-sm-4 {
        margin-bottom: 20px;
    }

    .bespoke-grid img {
        height: 330px;
    }

    .founder-intro-row {
        display: block;
    }

    .founder-intro-image img {
        min-height: 0;
        height: 460px;
    }

    .founder-intro-copy {
        padding: 55px 27px 60px;
    }

    .founder-intro-copy h2 {
        font-size: 25px;
    }
}

/* Premium visual direction */
.home-hero {
    min-height: 680px;
}

.home-hero > img {
    filter: saturate(.76) contrast(1.03);
}

.home-hero-shade {
    background: linear-gradient(90deg, rgba(12, 9, 5, .76) 0%, rgba(18, 13, 7, .42) 48%, rgba(0, 0, 0, .08) 84%);
}

.home-hero-content {
    padding-top: 162px;
    padding-bottom: 145px;
}

.home-hero-kicker {
    color: #dcc18f;
    font-size: 10px;
    letter-spacing: .3em;
}

.home-hero h1 {
    max-width: 800px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(54px, 5vw, 74px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: .015em;
}

.home-hero-intro {
    max-width: 535px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    letter-spacing: .02em;
}

.home-hero-button {
    padding: 14px 24px;
    border-color: rgba(220,193,143,.8);
    font-size: 9px;
    letter-spacing: .17em;
}

.home-hero-button-light {
    border-color: #f5efe3;
    background: #f5efe3;
}

.home-welcome {
    padding: 76px 0 67px !important;
    background: #f7f4ee;
    color: #27221c;
}

.home-welcome h2 {
    color: #1c1813;
    font-size: 37px;
    font-weight: 500;
    letter-spacing: .02em;
}

.home-welcome p {
    max-width: 930px;
    color: #6b645b;
    line-height: 2;
}

.archive-showcase {
    padding-top: 88px;
    background: #eee9e0;
}

.archive-showcase-heading p,
.selected-projects-heading p,
.bespoke-heading p {
    color: #9c7b48;
    font-weight: 500;
}

.archive-showcase-heading h2,
.selected-projects-heading h2,
.bespoke-heading h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 39px;
    font-weight: 500;
    letter-spacing: .025em;
}

.archive-grid,
.selected-projects-grid {
    gap: 10px;
}

.archive-grid img,
.selected-project img,
.bespoke-grid img {
    filter: saturate(.74) contrast(1.025);
}

.archive-statement {
    background: #17130f;
}

.archive-statement p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 29px;
    letter-spacing: .035em;
}

.selected-projects {
    padding-top: 92px;
    background: #fcfbf8;
}

.selected-project span {
    font-size: 16px;
    letter-spacing: .11em;
}

.selected-project small {
    color: #dbc49d;
}

.selected-projects-action a,
.bespoke-action a {
    border-color: #aa8953;
    font-size: 9px;
    letter-spacing: .17em;
}

.home-credentials {
    background: #15120e;
}

.credentials-heading {
    color: #d8bc89;
}

.home-credentials .counter.well {
    border-color: #393126;
    background: #15120e !important;
}

.home-credentials .counter h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
}

.bespoke-showcase {
    background: #0c0a08;
}

.bespoke-grid figure {
    background: #15120f;
}

.founder-intro {
    background: #17130f;
}

.founder-intro-copy h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
}

.founder-intro-copy p {
    color: #c5a46d;
}

@media (max-width: 767px) {
    .home-hero {
        min-height: 610px;
    }

    .home-hero-content {
        padding-top: 112px;
        padding-bottom: 92px;
    }

    .home-hero h1 {
        font-size: 43px;
        line-height: 1.05;
    }

    .home-welcome {
        padding: 55px 8px 48px !important;
    }

    .home-welcome h2 {
        font-size: 31px;
    }

    .archive-showcase-heading h2,
    .selected-projects-heading h2,
    .bespoke-heading h2 {
        font-size: 31px;
    }

    .founder-intro-copy h2 {
        font-size: 32px;
    }
}
