* {
    margin: 0;
    padding: 0;
    font-family: "Suisseworks Webs", Georgia, sans-serif;
    box-sizing: border-box;
}

body {
    background: linear-gradient(120deg, #f8f3eb 0%, #efe5d6 60%, #ebdfcc 100%);
    min-height: 100vh;
    color: #1f1f1f;
}

header {
    width: 100%;
}

.top_head {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    background-image: url("head_bg.avif");
}

.main_head {
    padding: 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

.left img {
    width: 132px;
}

.right button {
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 24px;
    cursor: pointer;
    background: #6f4828;
    transition: all ease-in-out 0.2s;
}

.right button:hover {
    background: #55351b;
}

.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 62px 20px 50px;
    display: grid;
    gap: 26px;
    grid-template-columns: 1.2fr 1fr;
}

.hero_content .eyebrow {
    color: #7c5330;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}

.hero_content h1 {
    font-size: clamp(30px, 5vw, 50px);
    line-height: 1.1;
    margin-bottom: 14px;
}

.hero_content p {
    color: #453826;
    max-width: 60ch;
    line-height: 1.6;
}

.cta {
    margin-top: 24px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: #6f4828;
    padding: 11px 20px;
    border-radius: 24px;
    font-weight: 700;
}

.feature_grid {
    display: grid;
    gap: 12px;
}

.feature_grid article {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 20px rgba(99, 69, 39, 0.12);
}

.feature_grid h3 {
    margin-bottom: 6px;
}

.feature_grid p {
    color: #51422e;
    line-height: 1.45;
}

@media (max-width: 820px) {
    .hero {
        grid-template-columns: 1fr;
    }
}
