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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #173d2c;
    background: #ffffff;
    line-height: 1.6;
}

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

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


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

.header {
    background: #ffffff;
    border-bottom: 1px solid #eee6cf;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    color: #173d2c;
}

.logo span {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
    color: #c9a227;
    letter-spacing: 2px;
}

.logo small {
    font-size: 10px;
    letter-spacing: 4px;
    color: #173d2c;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.menu a:hover {
    color: #c9a227;
}


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

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            120deg,
            #ffffff 0%,
            #fffdf6 55%,
            #f4f0dd 100%
        );
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.tag,
.section-tag {
    display: inline-block;
    color: #c9a227;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 6vw, 72px);
    line-height: 1.1;
    color: #173d2c;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #c9a227;
}

.hero p {
    max-width: 580px;
    color: #555;
    font-size: 17px;
    margin-bottom: 35px;
}

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

.btn {
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: #c9a227;
    color: white;
}

.btn-primary:hover {
    background: #a98718;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #173d2c;
    color: #173d2c;
}

.btn-secondary:hover {
    background: #173d2c;
    color: white;
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gold-circle {
    width: 380px;
    height: 380px;
    background: #d7bc60;
    border-radius: 50%;
    position: absolute;
    opacity: 0.35;
}

.product-placeholder {
    width: 230px;
    height: 350px;
    background: linear-gradient(
        145deg,
        #ffffff,
        #eee8d3
    );
    border: 2px solid #c9a227;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.product-placeholder span {
    font-family: "Playfair Display", serif;
    color: #c9a227;
    font-size: 28px;
    font-weight: 700;
}

.product-placeholder small {
    font-size: 10px;
    letter-spacing: 4px;
    color: #173d2c;
}


/* ================= SECTIONS ================= */

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-title h2,
.about-text h2,
.benefits h2,
.contact h2,
.social h2 {
    font-family: "Playfair Display", serif;
    color: #173d2c;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title p {
    color: #666;
}


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

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box {
    width: 80%;
    height: 430px;
    background: #173d2c;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    box-shadow: 0 20px 50px rgba(23, 61, 44, 0.2);
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
}


/* ================= GREEN SECTION ================= */

.section-green {
    background: #173d2c;
    color: white;
}

.section-green h2,
.section-green p {
    color: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.problem-card {
    background: rgba(255,255,255,0.07);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    transition: 0.3s;
}

.problem-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
}

.problem-icon {
    color: #c9a227;
    font-size: 34px;
    margin-bottom: 15px;
}

.problem-card h3 {
    margin-bottom: 12px;
}

.problem-card p {
    color: #d9e4dc;
    font-size: 14px;
}


/* ================= PRODUCTS ================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.product-card {
    border: 1px solid #eee6cf;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.product-image {
    height: 300px;
    background:
        linear-gradient(
            135deg,
            #173d2c,
            #285b42
        );
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c9a227;
    font-family: "Playfair Display", serif;
    font-size: 28px;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    color: #173d2c;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    margin-bottom: 20px;
}

.product-btn {
    display: inline-block;
    color: #c9a227;
    font-weight: 700;
}


/* ================= BENEFITS ================= */

.benefits-section {
    background: #fbf9f0;
}

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

.benefits-list {
    display: grid;
    gap: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd6bd;
}

.benefit span {
    color: #c9a227;
    font-weight: 700;
}

.benefit p {
    color: #444;
}


/* ================= SOCIAL ================= */

.social-section {
    text-align: center;
}

.social {
    max-width: 800px;
}

.social-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-buttons a {
    padding: 13px 28px;
    border: 1px solid #173d2c;
    color: #173d2c;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.social-buttons a:hover {
    background: #173d2c;
    color: white;
}


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

.contact-section {
    background: #f8f8f5;
}

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

.contact-info {
    display: grid;
    gap: 25px;
}

.contact-item {
    padding: 25px;
    background: white;
    border-left: 4px solid #c9a227;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.contact-item span {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-item a {
    color: #173d2c;
    font-weight: 600;
}


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

.footer {
    background: #173d2c;
    color: white;
    padding: 45px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    color: #c9a227;
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.footer p {
    color: #c9d5cd;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: #c9a227;
}

.footer-copy {
    text-align: right;
}


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

@media (max-width: 900px) {

    .menu {
        display: none;
    }

    .hero-content,
    .about,
    .benefits,
    .contact {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-image {
        height: 400px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-copy {
        text-align: center;
    }
}


@media (max-width: 600px) {

    .section {
        padding: 70px 0;
    }

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

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

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

    .btn {
        text-align: center;
    }

    .hero-image {
        height: 350px;
    }

    .gold-circle {
        width: 270px;
        height: 270px;
    }

    .product-placeholder {
        width: 190px;
        height: 290px;
    }
}