:root {
    --cp-gold: #e4aa19;
    --cp-gold-bright: #f4bd2b;
    --cp-gold-soft: rgba(228, 170, 25, .22);
    --cp-bg: #030303;
    --cp-panel: #080806;
    --cp-panel-soft: #0d0b07;
    --cp-line: rgba(228, 170, 25, .24);
    --cp-white: #f3efe7;
    --cp-muted: #a9a49b;
}

.cp-page {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 12%,
            rgba(228,170,25,.035),
            transparent 34rem
        ),
        var(--cp-bg);
    color: var(--cp-white);
}

.cp-page a {
    color: inherit;
}

.cp-hero {
    min-height: 590px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--cp-line);
}

.cp-hero-cover,
.cp-hero-slice,
.cp-hero-shade {
    position: absolute;
    inset: 0;
}

.cp-hero-cover {
    z-index: -4;
}

.cp-hero-cover img,
.cp-hero-slice img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cp-hero-cover img {
    object-position: center 36%;
    transform: scale(1.035);
    animation:
        cpHeroDrift 16s
        cubic-bezier(.22,.61,.36,1)
        infinite alternate;
}

.cp-hero-slice {
    z-index: -3;
    inset: 0 0 0 auto;
    width: 34%;
    border-left:
        1px solid
        rgba(228,170,25,.14);
    opacity: .82;
    overflow: hidden;
}

.cp-hero-slice img {
    object-position: center 28%;
    animation:
        cpPortraitDrift 13s
        ease-in-out infinite alternate;
}

.cp-hero-shade {
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.96) 0%,
            rgba(0,0,0,.85) 23%,
            rgba(0,0,0,.43) 55%,
            rgba(0,0,0,.34) 100%
        ),
        linear-gradient(
            0deg,
            #030303 0%,
            transparent 50%
        );
}

.cp-hero-content {
    width: min(1360px, calc(100% - 64px));
    min-height: 590px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding-bottom: 90px;
}

.cp-hero-copy {
    width: min(520px, 50vw);
    padding-top: 36px;
}

.cp-kicker {
    color: var(--cp-gold);
    display: block;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.cp-hero-copy h2 {
    margin: 22px 0 20px;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(
        52px,
        5.4vw,
        88px
    );
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.045em;
    color: #f4f0e9;
}

.cp-hero-copy h2 span {
    display: block;
}

.cp-gold-line {
    width: 48px;
    height: 2px;
    display: block;
    margin-top: 30px;
    background: var(--cp-gold);
}

.cp-profile-wrap {
    position: relative;
    z-index: 5;
    width: min(1360px, calc(100% - 64px));
    margin: -165px auto 0;
}

.cp-profile-grid {
    display: grid;
    grid-template-columns:
        255px
        minmax(0, 1fr)
        318px;
    gap: 36px;
    align-items: start;
}

.cp-portrait-card {
    margin: 0;
    position: relative;
    overflow: hidden;
    aspect-ratio: .73;
    border:
        1px solid
        rgba(228,170,25,.34);
    border-radius: 5px;
    background:
        linear-gradient(
            145deg,
            #151007,
            #060606
        );
    box-shadow:
        0 24px 55px
        rgba(0,0,0,.48);
}

.cp-portrait-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.86),
            transparent 37%
        );
}

.cp-portrait-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.015);
    transition:
        transform .8s
        cubic-bezier(.2,.75,.25,1);
}

.cp-portrait-card:hover img {
    transform: scale(1.06);
}

.cp-portrait-card figcaption {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 17px;
    display: flex;
    gap: 11px;
    align-items: center;
}

.cp-star {
    color: var(--cp-gold);
    font-size: 21px;
}

.cp-portrait-card small,
.cp-portrait-card strong {
    display: block;
}

.cp-portrait-card small {
    color: var(--cp-muted);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.cp-portrait-card strong {
    margin-top: 2px;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 17px;
    font-weight: 400;
}

.cp-mini-stats {
    margin-top: 14px;
    border:
        1px solid
        rgba(228,170,25,.26);
    border-radius: 5px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(18,14,8,.95),
            rgba(6,6,6,.98)
        );
}

.cp-mini-stats > div {
    min-height: 67px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 25px 1fr;
    gap: 11px;
    align-items: center;
}

.cp-mini-stats > div + div {
    border-top:
        1px solid
        rgba(228,170,25,.16);
}

.cp-mini-stats > div > span {
    color: var(--cp-gold);
    font-size: 14px;
}

.cp-mini-stats p {
    margin: 0;
}

.cp-mini-stats strong,
.cp-mini-stats small {
    display: block;
}

.cp-mini-stats strong {
    color: #eee9df;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 14px;
    font-weight: 400;
}

.cp-mini-stats small {
    margin-top: 2px;
    color: #77736c;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.cp-profile-main {
    padding-top: 61px;
    min-width: 0;
}

.cp-profile-main h1 {
    margin:
        12px 0
        12px;
    color: #f3efe8;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size:
        clamp(48px, 4.7vw, 76px);
    line-height: .97;
    letter-spacing: -.045em;
    font-weight: 400;
}

.cp-profile-subline {
    min-height: 25px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #a6a097;
    font-size: 10px;
}

.cp-profile-subline span:first-child {
    color: #b4aa99;
}

.cp-profile-subline span:first-child::first-letter {
    color: var(--cp-gold);
}

.cp-profile-bio {
    max-width: 780px;
    margin-top: 30px;
    color: #c5c0b8;
    font-size: 13px;
    line-height: 1.85;
}

.cp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 23px;
}

.cp-tags span {
    min-height: 28px;
    padding: 7px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid
        rgba(228,170,25,.28);
    border-radius: 999px;
    color: #bdb5a7;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background:
        rgba(228,170,25,.025);
}

.cp-connect {
    margin-top: 28px;
    padding-bottom: 30px;
    border-bottom:
        1px solid
        rgba(228,170,25,.17);
}

.cp-connect-label {
    display: block;
    margin-bottom: 11px;
    color: var(--cp-gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.cp-social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cp-social-icons a {
    width: 39px;
    height: 39px;
    display: inline-grid;
    place-items: center;
    border:
        1px solid
        rgba(228,170,25,.34);
    border-radius: 50%;
    color: #c7bfae;
    background:
        rgba(228,170,25,.02);
    transition:
        color .25s ease,
        border-color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.cp-social-icons a:hover {
    color: #030303;
    border-color: var(--cp-gold);
    background: var(--cp-gold);
    transform: translateY(-3px);
}

.cp-social-icons svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.cp-social-icons .fill-icon {
    fill: currentColor;
    stroke: none;
}

.cp-portfolio-preview {
    margin-top: 28px;
}

.cp-portfolio-preview > header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 13px;
}

.cp-portfolio-preview > header span,
.cp-portfolio-preview > header a {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.cp-portfolio-preview > header span {
    color: #d7d0c5;
}

.cp-portfolio-preview > header a {
    color: var(--cp-gold);
}

.cp-preview-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0,1fr));
    gap: 8px;
}

.cp-preview-image {
    min-height: 130px;
    aspect-ratio: 1.4;
    position: relative;
    overflow: hidden;
    display: block;
    border:
        1px solid
        rgba(255,255,255,.08);
    background: #060606;
}

.cp-preview-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.83),
            transparent 55%
        );
}

.cp-preview-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform .65s
        cubic-bezier(.2,.75,.25,1),
        filter .65s ease;
}

.cp-preview-image:hover img {
    transform: scale(1.055);
    filter: brightness(1.1);
}

.cp-preview-image > span {
    position: absolute;
    z-index: 2;
    left: 11px;
    right: 11px;
    bottom: 9px;
    color: #e9e4dc;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 11px;
}

.cp-empty-work {
    min-height: 73px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border:
        1px solid
        rgba(255,255,255,.08);
    color: #6d6962;
    font-size: 10px;
}

.cp-booking {
    margin-top: 31px;
    padding: 27px 24px 24px;
    border:
        1px solid
        rgba(228,170,25,.48);
    border-radius: 6px;
    background:
        linear-gradient(
            145deg,
            rgba(24,18,8,.95),
            rgba(5,5,5,.98)
        );
    box-shadow:
        0 24px 70px
        rgba(0,0,0,.38);
}

.cp-booking h3 {
    margin: 10px 0 12px;
    color: #f0ebe2;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.18;
}

.cp-booking-intro {
    margin: 0 0 18px;
    color: #999389;
    font-size: 9px;
    line-height: 1.7;
}

.cp-booking-list {
    border-top:
        1px solid
        rgba(228,170,25,.15);
}

.cp-booking-list > div {
    min-height: 53px;
    padding: 13px 0;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 8px;
    align-items: start;
    border-bottom:
        1px solid
        rgba(228,170,25,.15);
}

.cp-booking-list > div > span {
    color: var(--cp-gold);
    font-size: 10px;
}

.cp-booking-list p {
    margin: 0;
    color: #cbc4b8;
    font-size: 9px;
    line-height: 1.55;
    word-break: break-word;
}

.cp-booking-list small {
    display: block;
    margin-top: 3px;
    color: #7f796f;
    font-size: 7px;
}

.cp-booking-list a:hover {
    color: var(--cp-gold);
}

.cp-booking-actions {
    margin-top: 22px;
    display: grid;
    gap: 8px;
}

.cp-action {
    min-height: 47px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border:
        1px solid
        rgba(228,170,25,.38);
    color: #e1dbd1;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.cp-action:hover {
    border-color: var(--cp-gold);
    transform: translateX(2px);
}

.cp-action-gold {
    color: #090703;
    border-color: var(--cp-gold);
    background:
        linear-gradient(
            105deg,
            #d99a0c,
            #f2bd32
        );
}

.cp-action-gold:hover {
    color: #000;
    background: #f3bd2d;
}

.cp-selected-work,
.cp-interactions {
    width: min(1360px, calc(100% - 64px));
    margin-left: auto;
    margin-right: auto;
}

.cp-selected-work {
    margin-top: 80px;
}

.cp-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom:
        1px solid
        rgba(228,170,25,.18);
}

.cp-section-heading h2 {
    margin: 7px 0 0;
    color: #f0ebe3;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 34px;
    font-weight: 400;
}

.cp-section-heading > span {
    color: #7c776f;
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cp-empty-selected {
    min-height: 210px;
    border:
        1px solid
        rgba(255,255,255,.09);
    display: grid;
    place-content: center;
    text-align: center;
    gap: 9px;
}

.cp-empty-selected strong {
    color: #ece5db;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 22px;
    font-weight: 400;
}

.cp-empty-selected span {
    color: #817b72;
    font-size: 11px;
}

.cp-interactions {
    margin-top: 70px;
    margin-bottom: 75px;
}

.cp-image-fallback {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: grid;
    place-items: center;
    color: var(--cp-gold);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 54px;
    background:
        radial-gradient(
            circle,
            #181106,
            #050505 67%
        );
}

/* MOTION */

.cp-js [data-cp-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .85s ease,
        transform .85s
        cubic-bezier(.2,.75,.25,1);
}

.cp-js [data-cp-reveal].cp-visible {
    opacity: 1;
    transform: translateY(0);
}

.cp-js .cp-profile-left.cp-visible {
    transition-delay: .04s;
}

.cp-js .cp-profile-main.cp-visible {
    transition-delay: .12s;
}

.cp-js .cp-booking.cp-visible {
    transition-delay: .2s;
}

.cp-portrait-card {
    animation:
        cpFloat 6s
        ease-in-out infinite alternate;
}

@keyframes cpHeroDrift {
    from {
        transform: scale(1.035)
            translate3d(0,0,0);
    }
    to {
        transform: scale(1.095)
            translate3d(-1.1%, -1%, 0);
    }
}

@keyframes cpPortraitDrift {
    from {
        transform: scale(1.04)
            translate3d(0,0,0);
    }
    to {
        transform: scale(1.1)
            translate3d(0,-1.2%,0);
    }
}

@keyframes cpFloat {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-6px);
    }
}

@media (max-width: 1150px) {

    .cp-profile-grid {
        grid-template-columns:
            230px
            minmax(0,1fr);
    }

    .cp-booking {
        grid-column: 2;
        margin-top: 0;
    }

}

@media (max-width: 820px) {

    .cp-hero {
        min-height: 520px;
    }

    .cp-hero-content {
        min-height: 520px;
        width: min(
            100% - 36px,
            1360px
        );
    }

    .cp-hero-copy {
        width: 78%;
    }

    .cp-hero-slice {
        width: 43%;
        opacity: .54;
    }

    .cp-profile-wrap,
    .cp-selected-work,
    .cp-interactions {
        width: min(
            100% - 36px,
            1360px
        );
    }

    .cp-profile-wrap {
        margin-top: -105px;
    }

    .cp-profile-grid {
        grid-template-columns:
            minmax(0,1fr);
        gap: 25px;
    }

    .cp-profile-left,
    .cp-profile-main,
    .cp-booking {
        grid-column: auto;
    }

    .cp-profile-left {
        display: grid;
        grid-template-columns:
            minmax(180px, 280px)
            minmax(0,1fr);
        gap: 15px;
        align-items: stretch;
    }

    .cp-mini-stats {
        margin-top: 0;
    }

    .cp-profile-main {
        padding-top: 10px;
    }

    .cp-booking {
        margin-top: 0;
    }

}

@media (max-width: 560px) {

    .cp-hero {
        min-height: 470px;
    }

    .cp-hero-content {
        min-height: 470px;
        width: calc(100% - 28px);
        padding-bottom: 65px;
    }

    .cp-hero-copy {
        width: 92%;
    }

    .cp-hero-copy h2 {
        font-size: clamp(
            45px,
            15vw,
            64px
        );
    }

    .cp-hero-slice {
        width: 48%;
        opacity: .36;
    }

    .cp-profile-wrap,
    .cp-selected-work,
    .cp-interactions {
        width: calc(100% - 28px);
    }

    .cp-profile-wrap {
        margin-top: -68px;
    }

    .cp-profile-left {
        display: block;
    }

    .cp-portrait-card {
        width: min(77vw, 310px);
    }

    .cp-mini-stats {
        margin-top: 12px;
    }

    .cp-profile-main h1 {
        font-size:
            clamp(45px, 14vw, 67px);
    }

    .cp-profile-bio {
        font-size: 12px;
    }

    .cp-preview-grid {
        grid-template-columns: 1fr;
    }

    .cp-preview-image {
        min-height: 190px;
    }

    .cp-section-heading {
        align-items: start;
    }

}

@media (prefers-reduced-motion: reduce) {

    .cp-hero-cover img,
    .cp-hero-slice img,
    .cp-portrait-card {
        animation: none !important;
    }

    .cp-js [data-cp-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .cp-social-icons a,
    .cp-preview-image img,
    .cp-action {
        transition: none;
    }

}



/* FIX: remove duplicate right-side hero portrait */
.cp-hero-slice{
    display:none !important;
}

.cp-hero-shade{
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.96) 0%,
            rgba(0,0,0,.88) 26%,
            rgba(0,0,0,.64) 56%,
            rgba(0,0,0,.56) 100%
        ),
        linear-gradient(
            0deg,
            #030303 0%,
            transparent 50%
        );
}

.cp-hero-copy{
    width:min(620px, 58vw);
}

@media (max-width: 820px){
    .cp-hero-copy{
        width:82%;
    }
}

@media (max-width: 560px){
    .cp-hero-copy{
        width:92%;
    }
}

