/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* =====================================
       DAVID GRAHAM GOLD
    ===================================== */

    --gold-gradient:
        linear-gradient(
            105deg,
            #68490f 0%,
            #a97818 18%,
            #f5d477 38%,
            #fff1ad 48%,
            #c59632 62%,
            #805b13 80%,
            #d8ae4e 100%
        );

    --gold-dark: #68490f;
    --gold-mid: #a97818;
    --gold-light: #f5d477;
    --gold-highlight: #fff1ad;

}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
	width: 100%;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.construction {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    display: flex;
    background: #050505;
    overflow: hidden;
}


/* =========================================
   LEFT CONTENT
========================================= */

.content {
    width: 48%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 65px 6vw 45px 8vw;
    position: relative;
    z-index: 9999;
}


/* =========================================
   BRAND / LOGO
========================================= */

.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 18px;
}


/* Logo del artista */

.artist-logo {
    display: block;

    width: 190px;
    height: auto;

    object-fit: contain;

    /* El PNG tiene transparencia, por lo que
       podemos darle un brillo muy sutil */
    filter:
        drop-shadow(0 0 8px rgba(207, 160, 55, 0.18))
        drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));

    transition:
        transform .5s ease,
        filter .5s ease;
}


.artist-logo:hover {
    transform: translateY(-3px);

    filter:
        drop-shadow(0 0 14px rgba(225, 180, 72, 0.28))
        drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
}


/* Identificación debajo del logo */

.brand-label {
    display: flex;
    align-items: center;

    gap: 14px;

    font-size: 9px;

    letter-spacing: 4px;

    font-weight: 600;

    /* Degradado inspirado en el logo */

    background:
        linear-gradient(
            105deg,
            #68490f 0%,
            #a97818 18%,
            #f5d477 38%,
            #fff1ad 48%,
            #c59632 62%,
            #805b13 80%,
            #d8ae4e 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.brand-line {
    width: 35px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #6c4b10,
            #e8c45d,
            #8d6419
        );
}


/* Main text */

.main-text {
    max-width: 680px;
    position: relative;
    z-index: 99999;
    transform: translateY(-20px);
    overflow: visible;
}

.eyebrow {
    display: block;

    margin-bottom: 24px;

    background: var(--gold-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    font-size: 11px;

    letter-spacing: 4px;

    font-weight: 600;
}

h1 {
    position: relative;
    z-index: 999999;

    display: block;
    width: max-content;
    max-width: none;

    overflow: visible;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(55px, 6.2vw, 105px);

    line-height: 0.87;
    font-weight: 400;
    letter-spacing: -4px;
    text-transform: uppercase;

    background: var(--gold-gradient);

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 span {
    display: block;

    color: #ffffff;

    background: none;

    -webkit-text-fill-color: #ffffff;

    font-style: italic;

    font-weight: 400;

    margin-left: 55px;
}

.main-text p {
    margin-top: 38px;

    max-width: 440px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.8;

    font-weight: 300;
}

.main-text .small-text {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;

    letter-spacing: 0.3px;
}


/* Footer */

.footer {
    display: flex;
    align-items: center;
    gap: 14px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.separator {
    width: 25px;
    height: 1px;

    background: rgba(201, 162, 78, 0.5);
}


/* =========================================
   ARTIST SCENE
========================================= */

.artist-scene {
    position: relative;
    width: 52%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    z-index: 0;
    isolation: isolate;
}


/* =========================================
   CANVAS
========================================= */

.canvas {
    position: absolute;

    width: min(43vw, 600px);
    height: min(54vw, 700px);

    right: 9%;
    top: 12%;

    background:
        linear-gradient(
            125deg,
            #e8e1d1 0%,
            #f4f0e7 42%,
            #d8d0bd 100%
        );

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.65),
        inset 0 0 30px rgba(0, 0, 0, 0.15);

    border: 10px solid #181818;

    transform: rotate(1deg);

    z-index: 2;

    overflow: hidden;
}


/* Canvas texture */

.canvas::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.25;

    background-image:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 4px,
            rgba(0,0,0,0.04) 5px
        );
}


/* Canvas message */

.canvas-text {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    transform: rotate(-1deg);

    z-index: 3;
}

.canvas-text span,
.canvas-text strong {
    font-family: Georgia, "Times New Roman", serif;

    color: #171717;

    letter-spacing: 5px;
}

.canvas-text span {
    font-size: clamp(18px, 2vw, 30px);
}

.canvas-text strong {
    font-size: clamp(30px, 4vw, 60px);

    font-weight: 400;

    background: var(--gold-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(1px 2px 1px rgba(80, 50, 5, .35));
}


/* =========================================
   PAINT BRUSH STROKES
========================================= */

.paint-stroke {
    position: absolute;

    height: 15px;

    border-radius: 50%;

    background: #b9913f;

    opacity: 0.85;

    z-index: 4;
}

.stroke-1 {
    width: 190px;

    top: 27%;
    left: 10%;

    transform: rotate(-18deg);
}

.stroke-2 {
    width: 140px;

    bottom: 24%;
    right: 5%;

    transform: rotate(24deg);

    background: #151515;
}

.stroke-3 {
    width: 100px;

    bottom: 15%;
    left: 18%;

    transform: rotate(-8deg);

    background: #ffffff;
}


/* =========================================
   EASEL
========================================= */

.easel {
    position: absolute;

    width: 70%;
    height: 70%;

    right: 0;
    bottom: 0;

    z-index: 1;
}

.easel-leg {
    position: absolute;

    width: 8px;
    height: 90%;

    bottom: -20%;

    background: linear-gradient(
        to right,
        #241b10,
        #8d6b35,
        #241b10
    );

    transform-origin: bottom;
}

.leg-left {
    left: 30%;

    transform: rotate(11deg);
}

.leg-right {
    right: 30%;

    transform: rotate(-11deg);
}

.easel-support {
    position: absolute;

    width: 60%;
    height: 7px;

    left: 20%;
    top: 35%;

    background: #6f542c;
}


/* =========================================
   ARTIST
========================================= */

.artist {
    position: absolute;

    width: 210px;
    height: 470px;

    left: 10%;
    bottom: -20px;

    z-index: 6;
}


/* Head */

.artist-head {
    position: absolute;

    width: 74px;
    height: 88px;

    top: 0;
    left: 68px;

    background:
        radial-gradient(
            circle at 40% 30%,
            #b9865b,
            #754a34 75%
        );

    border-radius: 45% 45% 48% 48%;

    box-shadow:
        20px 10px 0 -4px #17120f;

    transform: rotate(2deg);
}


/* Hair */

.artist-head::before {
    content: "";

    position: absolute;

    width: 78px;
    height: 45px;

    top: -9px;
    left: -2px;

    background: #17120f;

    border-radius: 50% 50% 25% 25%;
}


/* Body */

.artist-body {
    position: absolute;

    width: 155px;
    height: 300px;

    top: 75px;
    left: 32px;

    background:
        linear-gradient(
            110deg,
            #111111,
            #292929 50%,
            #0a0a0a
        );

    border-radius: 45% 45% 10% 10%;

    transform: rotate(4deg);
}


/* Arm */

.artist-arm {
    position: absolute;

    width: 38px;
    height: 210px;

    top: 115px;
    right: 15px;

    background:
        linear-gradient(
            to right,
            #7b4d35,
            #a46d4c
        );

    border-radius: 25px;

    transform: rotate(-25deg);

    transform-origin: top;
}


/* Hand */

.artist-hand {
    position: absolute;

    width: 27px;
    height: 32px;

    top: 305px;
    right: 63px;

    background: #a96f4d;

    border-radius: 50%;

    transform: rotate(-20deg);

    z-index: 4;
}


/* Brush */

.brush {
    position: absolute;

    width: 155px;
    height: 4px;

    left: 13px;
    top: 13px;

    background: #191919;

    transform: rotate(-57deg);

    transform-origin: left;
}

.brush::before {
    content: "";

    position: absolute;

    right: -14px;
    top: -4px;

    width: 22px;
    height: 12px;

    background: #b18a43;

    clip-path: polygon(
        0 35%,
        100% 0,
        100% 100%,
        0 65%
    );
}


/* =========================================
   PALETTE
========================================= */

.palette {
    position: absolute;

    width: 105px;
    height: 80px;

    left: 7%;
    bottom: 30px;

    background: #b78b42;

    border-radius: 50% 45% 48% 42%;

    transform: rotate(-18deg);

    z-index: 7;

    box-shadow: 0 15px 30px rgba(0,0,0,.4);
}

.paint-dot {
    position: absolute;

    width: 15px;
    height: 15px;

    border-radius: 50%;
}

.dot-gold {
    top: 15px;
    left: 25px;
    background: #d2ab58;
}

.dot-white {
    top: 32px;
    left: 50px;
    background: white;
}

.dot-red {
    top: 45px;
    left: 22px;
    background: #8d3c32;
}

.dot-blue {
    top: 20px;
    left: 70px;
    background: #303b50;
}


/* =========================================
   PAINT SPLASHES
========================================= */

.paint-splash {
    background:
        linear-gradient(
            135deg,
            #6d4b0e,
            #b27d1c,
            #f3d06a,
            #9b701c
        );

    border-radius: 50%;

    filter: blur(0.2px);

    opacity: .8;

    z-index: 4;
}

.splash-1 {
    width: 8px;
    height: 8px;

    top: 19%;
    right: 5%;
}

.splash-2 {
    width: 13px;
    height: 13px;

    top: 68%;
    right: 8%;
}

.splash-3 {
    width: 5px;
    height: 5px;

    top: 28%;
    left: 13%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .construction {
        flex-direction: column;
    }

    .content {
        width: 100%;
        min-height: auto;

        padding: 45px 7vw 20px;
    }

    .main-text {
        margin-top: 90px;
        transform: none;
    }

    h1 {
        font-size: clamp(52px, 10vw, 85px);
    }

    .artist-scene {
        width: 100%;
        min-height: 600px;

        margin-top: -20px;
    }

    .canvas {
        width: 48vw;
        height: 58vw;

        max-width: 500px;
        max-height: 600px;

        right: 12%;
        top: 5%;
    }

    .artist {
        left: 17%;
        transform: scale(.85);
        transform-origin: bottom;
    }

    .footer {
        margin-top: 40px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .content {
        padding: 30px 25px 10px;
    }

    .brand {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .main-text {
        margin-top: 75px;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 2.5px;
        margin-bottom: 18px;
    }

    h1 {
        font-size: clamp(45px, 14vw, 68px);
        line-height: .9;
        letter-spacing: -2px;
		white-space: normal;
    }

    h1 span {
        margin-left: 25px;
    }

    .main-text p {
        margin-top: 28px;

        font-size: 13px;
        line-height: 1.7;
    }

    .main-text .small-text {
        margin-top: 10px;

        font-size: 11px;
    }

    .artist-scene {
        min-height: 470px;

        margin-top: 0;
    }

    .canvas {
        width: 58vw;
        height: 70vw;

        right: 8%;
        top: 5%;

        border-width: 6px;
    }

    .canvas-text span {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .canvas-text strong {
        font-size: 25px;
        letter-spacing: 2px;
    }

    .artist {
        transform: scale(.58);

        left: -5px;
        bottom: -80px;

        transform-origin: bottom;
    }

    .palette {
        transform: scale(.65) rotate(-18deg);

        left: 3%;
        bottom: 15px;
    }

    .easel {
        transform: scale(.75);

        right: -10%;
    }

    .footer {
        display: none;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .main-text {
        margin-top: 60px;
    }

    h1 {
        font-size: 43px;
    }

    .artist-scene {
        min-height: 400px;
    }

    .canvas {
        width: 61vw;
        height: 74vw;
    }
}

@media (max-width: 1000px) {

    .artist-logo {
        width: 150px;
    }

}

@media (max-width: 600px) {

    .brand {
        align-items: center;

        width: 100%;
    }

    .artist-logo {
        width: 125px;
    }

    .brand-label {
        font-size: 8px;
        letter-spacing: 3px;
    }

}