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

body {
    font-family: 'Montserrat', sans-serif;
    color: #9b8879;
    background: #f1ece7;
}

/* HEADER */
.header {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 10;
}

.logo {
    font-size: 22px;
    font-weight: 500;
}

.logo img {
    height: 40px;
}

/* HERO */
.hero {
    width: 100%;
    height: 520px;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #f3eee9;
}

.tagline {
    background: #f7f2ed;
    padding: 34px 0;
    border-bottom: 1px solid rgba(160, 145, 130, 0.12);
}

.tagline img {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
}

.tagline-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* INFO */
.info {
    background: #f1ece7;
    padding: 70px 20px;
    border-top: 1px solid rgba(160, 145, 130, 0.12);
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.column {
    flex: 1;
}

.column h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #8f7d70;
}

.column p {
    font-size: 13px;
    line-height: 1.9;
    color: #9d8b7d;
}


.social {
    margin-top: 18px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.social img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .hero {
        height: 380px;
        background-size: cover;
        background-position: center center;
    }
    .tagline img {
        margin-left: 30px;
        width: calc(100% - 60px);
    }
}