/* =========================================================
   MACRO ORIGINALS — MAIN STYLESHEET
   ========================================================= */


/* ==================== RESET ==================== */


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: #f5f5f3;
    color: #111111;
    line-height: 1.5;
}

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

button {
    font: inherit;
}

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


/* ==================== VARIABLES ==================== */

:root {
    --black: #111111;
    --dark: #181818;
    --white: #ffffff;
    --off-white: #f5f5f3;
    --gold: #d4af37;
    --gray: #777777;
    --light-gray: #e5e5e2;

    --max-width: 1280px;
    --radius: 24px;
}


/* ==================== GENERAL ==================== */

.section {
    width: min(100% - 48px, var(--max-width));
    margin: 0 auto;
    padding: 120px 0;
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--gray);
}

h1,
h2,
h3,
h4 {
    line-height: 1.05;
}

h1 span,
h2 span {
    color: var(--gold);
}


/* ==================== BUTTONS ==================== */

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 26px;

    border-radius: 100px;

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

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.primary-button {
    background: var(--black);
    color: var(--white);
}

.primary-button:hover {
    transform: translateY(-3px);
    background: var(--gold);
    color: var(--black);
}

.secondary-button {
    border: 1px solid #cccccc;
    color: var(--black);
}

.secondary-button:hover {
    transform: translateY(-3px);
    background: var(--white);
}

.cart-button {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 15px;

    background: #151515;
    color: white;

    border: 1px solid #2d2d2d;
    border-radius: 8px;

    text-decoration: none;
    font-size: 16px;
    font-weight: 500;

    transition: 0.2s ease;
}

.cart-button:hover {
    background: #000000;
    border-color: var(--gold);
}

.cart-icon {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.cart-count {
    color: #d4a72c;
    font-weight: 700;
}

/* ==================== NAVBAR ==================== */

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

    z-index: 1000;

    background: rgba(245, 245, 243, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

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

.nav-container {
    width: min(100% - 48px, var(--max-width));
    height: 78px;
    margin: auto;


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

.logo {
    width: 180px;
    height: auto;
}


.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    color: white;

    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-button {
    padding: 11px 21px;

    background: var(--white);
    color: var(--black);

    border-radius: 100px;

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

    transition: 0.25s ease;
}

.nav-button:hover {
    background: var(--gold);
    color: var(--black);
}

.menu-button {
    display: none;

    border: none;
    background: transparent;

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


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

.hero {
    min-height: 100vh;

    width: min(100% - 48px, var(--max-width));
    margin: auto;
    padding-top: 150px;
    padding-bottom: 90px;

    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

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

.hero h1 {
    font-size: clamp(55px, 7vw, 100px);
    letter-spacing: -5px;
    margin-bottom: 30px;
}

.hero-description {
    max-width: 540px;

    font-size: 17px;
    line-height: 1.7;

    color: #666;

    margin-bottom: 35px;
}

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


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

.hero-visual {
    position: relative;
    min-height: 580px;

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

.hero-card {
    width: min(100%, 480px);
    height: 560px;

    border-radius: 40px;

    overflow: hidden;

    background:
        linear-gradient(145deg,
            #202020,
            #080808);

    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.22);

    transform: rotate(3deg);

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

.placeholder-art {
    width: 75%;
    height: 75%;

    border: 1px solid rgba(212, 175, 55, 0.35);

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

    color: white;

    text-align: center;
}

.placeholder-art span {
    font-size: 13px;
    letter-spacing: 6px;
}

.placeholder-art strong {
    font-size: 60px;
    letter-spacing: -3px;
    color: var(--gold);
}

.placeholder-art small {
    margin-top: 10px;
    letter-spacing: 4px;
    color: #aaa;
}

.floating-card {
    position: absolute;

    bottom: 35px;
    left: 0;

    padding: 22px 28px;

    background: var(--white);

    border-radius: 18px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.floating-card {
    padding: 28px 32px;
    border-radius: 24px;
}

.floating-card span {
    display: block;

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

    color: var(--gold);

    margin-bottom: 8px;
}

.floating-card p1 {
    margin: 0;

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

    line-height: 1;
    letter-spacing: -0.7px;

    color: var(--black);
}

.floating-card p{
    margin: 0;

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

   position: relative;
    top: -7px;
    letter-spacing: -0.7px;

    color: var(--black);
}

/* ==================== SECTION HEADING ==================== */

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 50px;

    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: clamp(42px, 5vw, 70px);
    letter-spacing: -3px;
}

.section-heading>p {
    max-width: 390px;

    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

.centered {
    display: block;
    text-align: center;
}

.centered>p:last-child {
    margin: 20px auto 0;
}


/* ==================== COLLECTIONS ==================== */

.collection-grid {
    display: grid;

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

    gap: 20px;
}

.collection-card {
    position: relative;

    min-height: 570px;

    border-radius: var(--radius);

    overflow: hidden;

    color: white;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.collection-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15);
}

.collection-image {
    position: absolute;
    inset: 0;

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

    font-size: 45px;
    font-weight: 900;

    letter-spacing: -2px;

    opacity: 0.9;
}

.portrait-card {
    background:
        radial-gradient(circle at 50% 40%,
            #777,
            #171717 65%);
}

.tshirt-card {
    background:
        radial-gradient(circle at 50% 40%,
            #555,
            #111 65%);
}

.artwork-card {
    background:
        radial-gradient(circle at 50% 40%,
            #444,
            #080808 65%);
}

.collection-image span {
    transform: rotate(-8deg);
    opacity: 0.18;
}

.card-number {
    position: relative;
    z-index: 2;

    padding: 25px;

    font-size: 12px;
    letter-spacing: 2px;
}

.collection-content {
    position: relative;
    z-index: 2;

    padding: 30px;

    background:
        linear-gradient(transparent,
            rgba(0, 0, 0, 0.9));
}

.collection-content p {
    font-size: 10px;
    letter-spacing: 2px;
    color: #aaa;

    margin-bottom: 12px;
}

.collection-content h3 {
    font-size: 35px;
    letter-spacing: -1.5px;

    margin-bottom: 25px;
}

.collection-content a {
    font-size: 13px;
    font-weight: 700;

    color: var(--gold);
}


/* ==================== FEATURED ==================== */

.featured {
    max-width: none;

    width: 100%;

    padding-left: max(24px, calc((100% - var(--max-width)) / 2));
    padding-right: max(24px, calc((100% - var(--max-width)) / 2));

    background: var(--black);

    color: white;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.featured-content {
    max-width: 570px;
}

.featured h2 {
    font-size: clamp(45px, 5vw, 75px);
    letter-spacing: -4px;

    margin-bottom: 25px;
}

.featured-content>p:not(.eyebrow) {
    color: #aaa;

    line-height: 1.7;

    margin-bottom: 30px;
}

.price {
    margin-bottom: 30px;

    display: flex;
    flex-direction: column;
}

.price small {
    color: #777;
    font-size: 12px;
}

.price strong {
    font-size: 40px;
    color: var(--gold);
}

.featured .primary-button {
    background: white;
    color: black;
}

.featured .primary-button:hover {
    background: var(--gold);
}

.featured-image {
    min-height: 600px;

    border-radius: 35px;

    background:
        linear-gradient(145deg,
            #292929,
            #111);

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

.featured-placeholder {
    text-align: center;

    font-size: 45px;
    font-weight: 900;

    letter-spacing: -3px;

    color: #555;
}

.featured-placeholder strong {
    color: var(--gold);
}


/* ==================== HOW IT WORKS ==================== */

.how-it-works {
    text-align: center;
}

.steps {
    display: grid;

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

    margin-top: 70px;
}

.step {
    padding: 30px;

    border-top: 1px solid var(--light-gray);
}

.step span {
    display: block;

    font-size: 12px;
    font-weight: 800;

    color: var(--gold);

    margin-bottom: 25px;
}

.step h3 {
    font-size: 25px;
    margin-bottom: 12px;
}

.step p {
    color: #777;

    font-size: 14px;
    line-height: 1.6;
}


/* ==================== WHY MACRO ==================== */

.why-macro {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.why-content h2 {
    font-size: clamp(45px, 5vw, 70px);

    letter-spacing: -4px;

    margin-bottom: 30px;
}

.why-content>p:last-child {
    max-width: 550px;

    color: #777;

    line-height: 1.8;
}

.features {
    display: grid;
    gap: 25px;
}

.feature {
    padding: 30px;

    border: 1px solid var(--light-gray);

    border-radius: 20px;

    transition: 0.25s ease;
}

.feature:hover {
    transform: translateX(8px);
    background: white;
}

.feature strong {
    color: var(--gold);

    font-size: 12px;
}

.feature h3 {
    margin: 12px 0 8px;

    font-size: 22px;
}

.feature p {
    color: #777;

    font-size: 14px;
}


/* ==================== FINAL CTA ==================== */

.final-cta {
    text-align: center;

    padding-top: 150px;
    padding-bottom: 150px;
}

.final-cta h2 {
    font-size: clamp(48px, 7vw, 90px);

    letter-spacing: -5px;

    margin-bottom: 25px;
}

.final-cta>p:not(.eyebrow) {
    color: #777;

    margin-bottom: 30px;
}


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

.footer {
    background: black;

    color: white;

    padding: 10px max(24px, calc((100% - var(--max-width)) / 2)) 25px;
}

.footer-main {
    display: flex;

    justify-content: space-between;

    gap: 0px;

    padding-bottom: 70px;
}

.footer-brand {
    padding: 15px;
    text-align: center;
    color: #777;
}

.footer-logo {

    width: 300px;
    height: auto;
}

.footer-links {
    display: flex;
    padding: 15px;
    padding-top: 60px;
    gap: 90px;
}

.footer-links div {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-links h4 {
    color: var(--gold);

    margin-bottom: 8px;

    font-size: 12px;

    letter-spacing: 1px;
}

.footer-links a {
    color: #888;

    font-size: 13px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 5px;

    border-top: 1px solid #222;

    display: flex;
    justify-content: space-between;

    color: #555;

    font-size: 11px;
}


/* ==================== RESPONSIVE ==================== */

@media (max-width: 900px) {

    .nav-links,
    .nav-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

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

        padding-top: 130px;
    }

    .hero-visual {
        min-height: 500px;
    }

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

    .collection-card {
        min-height: 500px;
    }

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

        padding-top: 90px;
        padding-bottom: 90px;
    }

    .featured-image {
        min-height: 450px;
    }

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

    .why-macro {
        grid-template-columns: 1fr;

        gap: 60px;
    }
}


@media (max-width: 600px) {

    .section {
        width: min(100% - 30px, var(--max-width));

        padding: 80px 0;
    }

    .nav-container {
        width: calc(100% - 30px);
    }

    .hero {
        width: calc(100% - 30px);

        padding-top: 120px;
    }

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

    .hero-description {
        font-size: 15px;
    }

    .hero-card {
        height: 440px;
    }

    .hero-visual {
        min-height: 450px;
    }

    .floating-card {
        left: -5px;
    }

    .section-heading {
        display: block;
    }

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

    .section-heading h2 {
        font-size: 45px;
    }

    .collection-card {
        min-height: 450px;
    }

    .collection-content h3 {
        font-size: 30px;
    }

    .featured {
        padding-left: 30px;
        padding-right: 30px;
    }

    .featured h2 {
        font-size: 48px;
    }

    .featured-image {
        min-height: 350px;
    }

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

    .why-content h2 {
        font-size: 48px;
    }

    .final-cta h2 {
        font-size: 50px;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-links {
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}