:root {
    --primary: #7A2F08;
    --primary-hover: #5e2406;
    --soft: #E9DDD6;
    --background: #F8F7F5;
    --white: #ffffff;
    --text: #2D2D2D;
    --gray: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--background);
    color: var(--text);
}

/* HEADER MOBILE */

.header {
    width: 100%;
    padding: 18px 5%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eeeeee;

    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.logo {
    color: var(--primary);
    font-size: 26px;
    font-weight: bold;
}

.navbar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.navbar a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.navbar a:hover {
    color: var(--primary);
}

/* BUTTONS */

.nav-btn,
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 13px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.nav-btn:hover,
.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* HERO MOBILE */

.hero {
    min-height: auto;
    padding: 70px 5%;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("https://images.unsplash.com/photo-1442512595331-e89e73853f31");
    background-size: cover;
    background-position: center;

    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
}

.hero-content {
    color: var(--white);
}

.tag {
    background: rgba(233,221,214,0.95);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.08;
    margin: 20px 0;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-card {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(1px);

    border-radius: 35px;

    padding: 18px;

    overflow: hidden;
}

.hero-card img {
    width: 100%;

    height: auto;

    max-height: 520px;

    object-fit: contain;

    border-radius: 24px;

    display: block;
}

/* BADGES */

.badges {
    padding: 35px 5%;
    background: var(--white);
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.badges div {
    background: var(--soft);
    color: var(--primary);
    padding: 13px 20px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 14px;
}

/* STORY */

.story {
    padding: 90px 5%;
    background:
        linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)),
        url("https://images.unsplash.com/photo-1447933601403-0c6688de566e");
    background-size: cover;
    background-position: center;
}

.story-content {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.12);
}

.story h2 {
    font-size: 36px;
    line-height: 1.15;
    margin: 20px 0;
    color: var(--white);
}

.story p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
    margin-bottom: 22px;
}

/* ABOUT */

.about {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
}

.about-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

.about-text h2,
.section-title h2,
.process-header h2,
.products h2,
.contact h2 {
    font-size: 36px;
    line-height: 1.15;
    margin: 18px 0 20px;
    color: var(--primary);
}

.about-text p,
.section-title p,
.process-header p,
.contact p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 28px;
}

/* COFFEE SPECS */

.coffee-specs {
    padding: 85px 5%;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin: 0 auto 45px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.spec-card {
    background: var(--background);
    padding: 32px 26px;
    border-radius: 26px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.spec-icon {
    font-size: 40px;
    margin-bottom: 18px;
}

.spec-card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 16px;
}

.spec-card p,
.spec-card li {
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px;
}

.spec-card ul {
    list-style: none;
}

/* PROCESS WITH VIDEO */

.process {
    padding: 85px 5%;
    background: var(--background);
}

.process-header {
    text-align: center;
    margin: 0 auto 45px;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.process-video {
    background: var(--white);
    padding: 12px;
    border-radius: 26px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
}

.process-video video {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.process-card {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.process-card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 12px;
}

.process-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* PRODUCTS */

.products {
    padding: 85px 5%;
    text-align: center;
    background: var(--white);
}

.product-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.product-card {
    background: var(--background);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-card h3 {
    margin: 22px 0 10px;
    color: var(--primary);
    font-size: 24px;
}

.product-card p {
    padding: 0 20px;
    line-height: 1.6;
    color: var(--gray);
}

.product-card a {
    display: inline-block;
    margin: 25px 0;
    background: var(--primary);
    color: var(--white);
    padding: 13px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
}

/* BANNER */

.banner {
    padding: 75px 5%;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    border-radius: 28px;
    margin: 0 5%;
}

.banner h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.banner p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.9);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* CONTACT */

.contact {
    padding: 80px 5%;
    text-align: center;
}

/* TABLET */

@media (min-width: 768px) {
    .header {
        padding: 20px 7%;
    }

    .hero {
        padding: 90px 7%;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-video video {
        height: 460px;
    }
}

/* DESKTOP */

@media (min-width: 1024px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 20px 8%;
    }

    .navbar {
        gap: 24px;
    }

    .navbar a {
        font-size: 15px;
    }

    .hero {
        min-height: 92vh;
        grid-template-columns: 1.1fr 0.9fr;
        text-align: left;
        padding: 80px 8%;
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 72px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-card img {
        height: 480px;
        width: 100%;
        object-fit: contain;
        padding: 1px;
        border-radius: 28px;
    }

    .story {
        padding: 140px 8%;
    }

    .story-content {
        max-width: 850px;
        padding: 60px;
    }

    .story h2 {
        font-size: 58px;
    }

    .about {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        padding: 100px 8%;
        gap: 60px;
    }

    .about-img img {
        height: 480px;
    }

    .coffee-specs,
    .process,
    .products {
        padding: 110px 8%;
    }

    .section-title,
    .process-header {
        max-width: 850px;
    }

    .about-text h2,
    .section-title h2,
    .process-header h2,
    .products h2,
    .contact h2 {
        font-size: 46px;
    }

    .specs-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 22px;
    }

    .spec-card {
        padding: 35px 24px;
    }

    .process-content {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
        align-items: center;
    }

    .process-video video {
        height: 520px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .banner {
        padding: 100px 8%;
        border-radius: 40px;
        margin: 0 8%;
    }

    .banner h2 {
        font-size: 42px;
    }
}

/* HOVER SOLO DESKTOP */

@media (min-width: 1024px) {
    .spec-card,
    .product-card,
    .process-card {
        transition: 0.3s;
    }

    .spec-card:hover,
    .product-card:hover,
    .process-card:hover {
        transform: translateY(-8px);
    }

    .product-card a:hover {
        background: var(--primary-hover);
    }

    .btn-secondary:hover {
        background: var(--white);
        color: var(--primary);
    }
}
.reviews {
    padding: 90px 5%;
    background:
        linear-gradient(rgba(122,47,8,0.05), rgba(122,47,8,0.05)),
        var(--background);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 45px;
}

.review-card {
    position: relative;
    background: rgba(255,255,255,0.92);
    padding: 42px 30px;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    text-align: left;
    overflow: hidden;
    border: 1px solid rgba(122,47,8,0.08);
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary);
}

.quote {
    position: absolute;
    top: 18px;
    right: 28px;
    font-size: 90px;
    line-height: 1;
    color: rgba(122,47,8,0.10);
    font-family: Georgia, serif;
}

.reviews {
    padding: 90px 5%;
    background: var(--background);
    text-align: center;
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 45px;
}

.review-card,
.featured-review {
    position: relative;
    background: var(--primary);
    color: var(--white);
    padding: 42px 30px;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(122,47,8,0.22);
    text-align: left;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0)
    );
    pointer-events: none;
}

.quote {
    position: absolute;
    top: 14px;
    right: 28px;
    font-size: 90px;
    line-height: 1;
    color: rgba(255,255,255,0.12);
    font-family: Georgia, serif;
}

.stars {
    color: #f5d76e;
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.review-card p {
    color: rgba(255,255,255,0.92);
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.avatar {
    width: 54px;
    height: 54px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    flex-shrink: 0;
}

.review-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 5px;
}

.review-card span {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
}

@media (min-width: 1024px) {
    .reviews {
        padding: 110px 8%;
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .review-card {
        min-height: 360px;
        transition: 0.3s;
    }

    .review-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(122,47,8,0.28);
    }
}
.coffee-showcase {
    padding: 85px 5%;
    background: var(--white);
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 70px;
    align-items: center;
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-image img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

.showcase-text {
    background: var(--background);
    padding: 34px 28px;
    border-radius: 28px;
}

.showcase-text h2 {
    color: var(--primary);
    font-size: 34px;
    line-height: 1.15;
    margin: 18px 0;
}

.showcase-text p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
}

@media (min-width: 1024px) {
    .coffee-showcase {
        padding: 110px 8%;
    }

    .showcase-row {
        grid-template-columns: 1fr 1fr;
        gap: 55px;
        margin-bottom: 90px;
    }

    .showcase-row.reverse .showcase-image {
        order: 2;
    }

    .showcase-row.reverse .showcase-text {
        order: 1;
    }

    .showcase-image img {
        height: 430px;
    }

    .showcase-text {
        padding: 55px;
    }

    .showcase-text h2 {
        font-size: 46px;
    }
}
/*footer*/
footer {
    align-content: center;
    text-align: center;
}
footer {
    background-color: #2b1d16;
    color: white;
    text-align: center;
    padding: 30px;
}

footer h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

footer p {
    margin: 8px 0;
    font-size: 16px;
}
footer {
    background-color: #2b1d16;
    color: white;
    text-align: center;
    padding: 30px;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}
a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}
