body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #F5F1E8;
    color: #6E5A3A;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}

.logo {
    width: 280px;
    max-width: 85%;
    margin-bottom: 34px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #6E5A3A;
}

p {
    font-size: 16px;
    color: #8A7552;
    margin: 0 0 30px;
    line-height: 1.6;
}

.social {
    margin-bottom: 30px;
}

.social a {
    margin: 0 12px;
    text-decoration: none;
    color: #C9A46C;
    font-weight: 500;
    transition: 0.3s;
}

.social a:hover {
    color: #B89257;
}

.contact-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 700px;
}

.row input {
    width: 320px;
    max-width: 100%;
}

.contact-form textarea {
    width: 655px;
    max-width: 100%;
    min-height: 120px;
    resize: vertical;
    margin-top: 15px;
}

input,
textarea {
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #D8C8AE;
    border-radius: 10px;
    background: rgba(255,255,255,0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #6E5A3A;
    box-sizing: border-box;
}

button {
    padding: 13px 28px;
    border: none;
    background: #C9A46C;
    color: white;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 5px;
}

button:hover {
    background: #B89257;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    body {
        padding: 30px 16px;
        align-items: flex-start;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 10px 0 30px;
    }

    .logo {
        width: 210px;
        max-width: 78%;
        margin-bottom: 26px;
    }

    h1 {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .social {
        margin-bottom: 24px;
    }

    .social a {
        display: inline-block;
        margin: 6px 10px;
        font-size: 15px;
    }

    .contact-form {
        width: 100%;
        margin-top: 10px;
    }

    .row {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }

    .row input,
    .contact-form textarea {
        width: 100%;
        max-width: 100%;
    }

    input,
    textarea {
        font-size: 16px;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .contact-form textarea {
        min-height: 130px;
        margin-top: 0;
    }

    button {
        width: 100%;
        max-width: 220px;
        padding: 14px 22px;
        font-size: 15px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 24px 14px;
    }

    .logo {
        width: 180px;
        max-width: 75%;
        margin-bottom: 22px;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .social a {
        font-size: 14px;
        margin: 4px 8px;
    }

    input,
    textarea {
        font-size: 16px;
        padding: 13px 14px;
    }

    .contact-form textarea {
        min-height: 115px;
    }

    button {
        max-width: 100%;
    }
}