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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #f7f4ef;
    color: #191714;
    line-height: 1.6;
}

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

.container {
    width: min(1180px, 90%);
    margin: auto;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 100;

    background: rgba(247, 244, 239, 0.88);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    font-weight: 400;
    opacity: 0.55;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;

    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.5;
}

.menu-btn {
    display: none;

    border: none;
    background: transparent;

    font-size: 25px;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding-top: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 80px;
}

.eyebrow {
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;

    color: #927052;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -4px;

    max-width: 700px;
}

.hero h1 span,
.section-heading span,
.about-content h2 span,
.contact h2 span {
    color: #a46b3c;
}

.hero-description {
    margin-top: 30px;

    max-width: 520px;

    color: #6d665f;

    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 14px;

    margin-top: 36px;
}

.btn {
    display: inline-flex;

    padding: 14px 24px;

    border-radius: 40px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #191714;
    color: white;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
    border: 1px solid #cfc7bd;
}


/* =========================
   ART CARD
========================= */

.hero-art {
    display: flex;
    justify-content: center;
}

.art-card {
    width: min(430px, 100%);
    aspect-ratio: 4 / 5;

    position: relative;

    overflow: hidden;

    border-radius: 220px 220px 20px 20px;

    background:
        linear-gradient(
            135deg,
            #e2b37d,
            #b96d4d 45%,
            #432d2a
        );

    box-shadow:
        30px 30px 80px rgba(83, 56, 37, 0.20);
}

.art-circle {
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: #f4d7ad;

    top: 18%;
    left: 20%;

    mix-blend-mode: screen;
}

.art-line {
    position: absolute;

    height: 10px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.65);

    transform: rotate(-35deg);
}

.line-1 {
    width: 280px;
    top: 45%;
    left: 5%;
}

.line-2 {
    width: 230px;
    top: 55%;
    left: 25%;
}

.line-3 {
    width: 180px;
    top: 65%;
    left: 45%;
}

.art-label {
    position: absolute;

    bottom: 30px;
    left: 30px;
    right: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: white;
}

.art-label span {
    font-size: 12px;
    opacity: 0.7;
}

.art-label strong {
    font-size: 14px;
}


/* =========================
   GALLERY
========================= */

.gallery-section {
    padding: 130px 0;
    background: #fff;
}

.section-heading {
    max-width: 700px;

    margin-bottom: 60px;
}

.section-heading h2,
.about-content h2,
.contact h2 {
    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.section-heading > p:last-child {
    margin-top: 20px;

    color: #777;
}

.gallery {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
}

.gallery-card {
    overflow: hidden;
}

.placeholder-art {
    width: 100%;
    aspect-ratio: 1.15;

    position: relative;

    display: flex;
    align-items: flex-end;

    padding: 25px;

    overflow: hidden;

    border-radius: 8px;

    transition: transform 0.4s;
}

.gallery-card:hover .placeholder-art {
    transform: scale(1.015);
}

.placeholder-art span {
    font-size: 13px;

    color: rgba(255,255,255,0.8);
}

.art-one {
    background:
        radial-gradient(
            circle at 30% 30%,
            #f5d9ad 0 15%,
            transparent 16%
        ),
        linear-gradient(
            130deg,
            #4a302b,
            #bd7751,
            #e5b27c
        );
}

.art-two {
    background:
        radial-gradient(
            circle at 65% 35%,
            #e9d4a5 0 20%,
            transparent 21%
        ),
        linear-gradient(
            160deg,
            #243a37,
            #7c9b82,
            #d6b57e
        );
}

.art-three {
    background:
        radial-gradient(
            circle at 45% 40%,
            #dca07d 0 25%,
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #2e2428,
            #744c54,
            #b98272
        );
}

.art-four {
    background:
        radial-gradient(
            circle at 70% 30%,
            #f4d49a 0 18%,
            transparent 19%
        ),
        linear-gradient(
            150deg,
            #253a38,
            #778c65,
            #c39a58
        );
}

.card-info {
    padding: 18px 4px;
}

.card-info h3 {
    font-size: 19px;
}

.card-info p {
    margin-top: 4px;

    color: #888;

    font-size: 13px;
}


/* =========================
   ABOUT
========================= */

.about-section {
    padding: 140px 0;
}

.about {
    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 80px;

    align-items: center;
}

.about-number {
    width: 100%;

    aspect-ratio: 1;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #c88958,
            #563a34
        );

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    box-shadow: 20px 20px 60px rgba(71, 48, 37, 0.2);
}

.about-number span {
    font-size: 70px;
    font-weight: 800;

    letter-spacing: -5px;
}

.about-content {
    max-width: 650px;
}

.about-content p:not(.eyebrow) {
    margin-top: 25px;

    color: #6d665f;

    font-size: 17px;
}

.text-link {
    display: inline-block;

    margin-top: 30px;

    font-weight: 800;

    border-bottom: 1px solid #191714;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    padding: 100px 0;

    background: #191714;

    color: white;
}

.contact {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;
}

.contact h2 {
    max-width: 600px;
}

.contact h2 span {
    color: #d49b69;
}

.contact-email {
    font-size: 17px;

    padding-bottom: 8px;

    border-bottom: 1px solid #777;

    white-space: nowrap;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #191714;

    color: #aaa;

    border-top: 1px solid #333;

    padding: 35px 0;
}

.footer-content {
    display: flex;

    justify-content: space-between;
    align-items: center;
}

.footer .logo {
    color: white;
}

.footer p {
    font-size: 13px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .nav-links {
        position: absolute;

        top: 76px;
        left: 0;

        width: 100%;

        padding: 25px;

        background: #f7f4ef;

        display: none;

        flex-direction: column;

        gap: 20px;

        border-bottom: 1px solid #ddd;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }


    .hero {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .hero-art {
        max-width: 420px;
        margin: auto;
    }


    .gallery {
        grid-template-columns: 1fr;
    }


    .about {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-number {
        max-width: 300px;
        margin: auto;
    }


    .contact {
        flex-direction: column;

        align-items: flex-start;
    }

    .contact-email {
        white-space: normal;
    }


    .footer-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }
}


@media (max-width: 500px) {

    .container {
        width: 88%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section-heading h2,
    .about-content h2,
    .contact h2 {
        letter-spacing: -2px;
    }

}