* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    position: relative;
    z-index: 10;
}

.logo {
    color: #ffffff;
    text-decoration: none;

    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span {
    color: #c58b5c;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #999;
    text-decoration: none;

    font-size: 14px;

    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-button {
    color: #ffffff;
    text-decoration: none;

    padding: 13px 22px;

    border: 1px solid #444;
    border-radius: 30px;

    font-size: 14px;

    transition: 0.3s ease;
}

.nav-button:hover {
    background: #ffffff;
    color: #0d0d0d;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: calc(100vh - 90px);

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    padding: 40px 7% 100px;

    position: relative;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    max-width: 650px;

    position: relative;
    z-index: 2;
}

.hero-small {
    color: #c58b5c;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(55px, 7vw, 105px);

    line-height: 0.95;

    letter-spacing: -5px;

    margin-bottom: 30px;
}

.hero h1 span {
    color: #c58b5c;
    display: block;
}

.hero-description {
    max-width: 480px;

    color: #8e8e8e;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 40px;
}


/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.primary-button,
.secondary-button {
    text-decoration: none;

    padding: 16px 26px;

    border-radius: 30px;

    font-size: 14px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.primary-button {
    background: #c58b5c;
    color: #ffffff;
}

.primary-button:hover {
    transform: translateY(-4px);
}

.secondary-button {
    color: #ffffff;
    border: 1px solid #333;
}

.secondary-button:hover {
    background: #ffffff;
    color: #0d0d0d;
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    height: 600px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: #1b1511;

    position: absolute;

    box-shadow:
        0 0 100px rgba(197, 139, 92, 0.12);
}


/* =========================
   COFFEE
========================= */

.coffee-image {
    width: 330px;
    height: 330px;

    border-radius: 50%;

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-cup {
    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: #21150f;

    border: 1px solid #4a3020;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 100px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6);
}


/* =========================
   FLOATING CARD
========================= */

.floating-card {
    position: absolute;

    right: 0;
    bottom: 70px;

    width: 145px;

    padding: 20px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(15px);

    z-index: 3;
}

.floating-card span {
    color: #c58b5c;

    font-size: 12px;
}

.floating-card p {
    margin-top: 10px;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;

        padding-top: 70px;
    }

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: 450px;
        margin-top: 30px;
    }

    .hero-circle {
        width: 330px;
        height: 330px;
    }

    .coffee-cup {
        width: 170px;
        height: 170px;

        font-size: 75px;
    }

    .floating-card {
        right: 5%;
    }
}


@media (max-width: 500px) {

    .navbar {
        padding: 0 5%;
    }

    .nav-button {
        padding: 10px 16px;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-visual {
        height: 380px;
    }
}
/* =========================
   FEATURED PRODUCTS
========================= */

.featured-products {
    padding: 130px 7% 140px;

    position: relative;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 60px;
}

.section-label {
    color: #c58b5c;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 18px;
}

.section-header h2 {
    font-size: clamp(40px, 5vw, 70px);

    line-height: 0.95;

    letter-spacing: -3px;
}

.section-header h2 span {
    color: #c58b5c;
    display: block;
}

.view-menu {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    padding-bottom: 8px;

    border-bottom: 1px solid #444;

    transition: 0.3s ease;
}

.view-menu:hover {
    color: #c58b5c;
    border-color: #c58b5c;
}


/* PRODUCTS GRID */

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* PRODUCT CARD */

.product-card {
    background: #151515;

    border: 1px solid #222;

    border-radius: 24px;

    overflow: hidden;

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease;

    will-change: transform;
}

.product-card:hover {
    transform: translateY(-10px);

    border-color: #3a2a20;

    background: #181818;
}


/* PRODUCT IMAGE */

.product-image {
    height: 360px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #2a1d15 0%,
            #17110d 45%,
            #121212 100%
        );
}

.product-placeholder {
    width: 180px;
    height: 180px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 78px;

    background: #21150f;

    border: 1px solid #4a3020;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.5);

    transition:
        transform 0.6s ease;
}

.product-card:hover .product-placeholder {
    transform: scale(1.08) rotate(4deg);
}


/* TAG */

.product-tag {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 8px 12px;

    border-radius: 30px;

    background: #c58b5c;
    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
}


/* PRODUCT INFO */

.product-info {
    padding: 26px;
}

.product-info h3 {
    font-size: 24px;

    margin-bottom: 10px;
}

.product-info p {
    color: #888;

    font-size: 14px;

    line-height: 1.7;

    max-width: 270px;
}

.product-bottom {
    margin-top: 28px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.price {
    color: #ffffff;

    font-size: 20px;
    font-weight: 700;
}

.add-button {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid #333;

    background: transparent;

    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.add-button:hover {
    background: #c58b5c;
    color: #ffffff;

    transform: rotate(90deg);
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-image {
        height: 300px;
    }

}


@media (max-width: 650px) {

    .featured-products {
        padding-left: 5%;
        padding-right: 5%;
    }

    .section-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 330px;
    }

/* =========================
   ABOUT / STORY
========================= */

.about-section {
    min-height: 800px;

    padding: 140px 7%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 100px;

    position: relative;
}


/* =========================
   IMAGE
========================= */

.about-image-wrapper {
    position: relative;

    height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: 90%;
    height: 90%;

    overflow: hidden;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            #2a1d15 0%,
            #17110d 50%,
            #111111 100%
        );

    position: relative;

    transform: translateY(0);

    will-change: transform;
}

.about-image-content {
    width: 280px;
    height: 280px;

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 120px;

    background: #21150f;

    border: 1px solid #4a3020;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.55);

    will-change: transform;
}


/* =========================
   BADGE
========================= */

.about-badge {
    position: absolute;

    right: 0;
    bottom: 35px;

    width: 125px;
    height: 125px;

    border-radius: 50%;

    background: #c58b5c;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    z-index: 2;

    transform: rotate(-8deg);
}

.about-badge span {
    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 5px;
}

.about-badge strong {
    font-size: 27px;

    line-height: 1;
}


/* =========================
   CONTENT
========================= */

.about-content {
    max-width: 560px;
}

.about-label {
    color: #c58b5c;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.about-content h2 {
    font-size: clamp(48px, 5vw, 78px);

    line-height: 0.95;

    letter-spacing: -4px;

    margin-bottom: 35px;
}

.about-content h2 span {
    color: #c58b5c;

    display: block;
}

.about-text {
    color: #8e8e8e;

    font-size: 16px;

    line-height: 1.9;

    max-width: 500px;

    margin-bottom: 20px;
}


/* =========================
   BUTTON
========================= */

.about-button {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 20px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    padding-bottom: 8px;

    border-bottom: 1px solid #444;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        gap 0.3s ease;
}

.about-button:hover {
    color: #c58b5c;

    border-color: #c58b5c;

    gap: 20px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 950px) {

    .about-section {
        grid-template-columns: 1fr;

        gap: 70px;

        padding-top: 110px;
        padding-bottom: 110px;
    }

    .about-content {
        max-width: 700px;
    }

    .about-image-wrapper {
        height: 540px;
    }

    .about-content h2 {
        font-size: 60px;
    }

}


@media (max-width: 600px) {

    .about-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .about-image-wrapper {
        height: 430px;
    }

    .about-image {
        width: 100%;
        height: 90%;
    }

    .about-image-content {
        width: 210px;
        height: 210px;

        font-size: 90px;
    }

    .about-badge {
        width: 100px;
        height: 100px;

        right: -5px;
    }

    .about-badge strong {
        font-size: 22px;
    }

    .about-content h2 {
        font-size: 52px;

        letter-spacing: -2px;
    }
/* =========================
   CTA SECTION
========================= */

.cta-section {
    min-height: 650px;

    padding: 120px 7%;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #241811 0%,
            #14100d 35%,
            #0d0d0d 75%
        );

    border-top: 1px solid #1d1d1d;
    border-bottom: 1px solid #1d1d1d;
}

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.cta-label {
    color: #c58b5c;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 25px;
}

.cta-content h2 {
    font-size: clamp(52px, 7vw, 100px);

    line-height: 0.92;

    letter-spacing: -5px;

    margin-bottom: 30px;
}

.cta-content h2 span {
    color: #c58b5c;
    display: block;
}

.cta-text {
    max-width: 560px;

    margin: 0 auto 40px;

    color: #8e8e8e;

    line-height: 1.8;

    font-size: 16px;
}


/* CTA BUTTONS */

.cta-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    padding: 16px 26px;

    border-radius: 30px;

    font-size: 14px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.cta-primary {
    background: #c58b5c;
    color: #ffffff;
}

.cta-primary:hover {
    transform: translateY(-4px);
}

.cta-secondary {
    color: #ffffff;

    border: 1px solid #333;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #0d0d0d;
}


/* DECORATIONS */

.cta-decoration {
    position: absolute;

    border: 1px solid rgba(197, 139, 92, 0.12);

    border-radius: 50%;
}

.cta-decoration-one {
    width: 450px;
    height: 450px;

    left: -180px;
    top: 50%;

    transform: translateY(-50%);
}

.cta-decoration-two {
    width: 600px;
    height: 600px;

    right: -260px;
    top: 50%;

    transform: translateY(-50%);
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 80px 7% 30px;

    background: #090909;
}

.footer-top {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 70px;

    border-bottom: 1px solid #222;
}

.footer-brand p {
    color: #777;

    font-size: 14px;

    line-height: 1.7;

    max-width: 220px;

    margin-top: 20px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.footer-column h3 {
    font-size: 13px;

    margin-bottom: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.footer-column a,
.footer-column p {
    color: #777;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


/* FOOTER BOTTOM */

.footer-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 25px;

    color: #555;

    font-size: 12px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 800px) {

    .cta-section {
        min-height: 600px;
    }

    .cta-content h2 {
        letter-spacing: -3px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 550px) {

    .cta-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .cta-content h2 {
        font-size: 52px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }

    .footer {
        padding-left: 5%;
        padding-right: 5%;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 45px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

}