/* GLOBAL */

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f8f6;
    color: #2c2c2c;
    line-height: 1.7;
}

h1,
h2,
h3 {
    font-weight: 500;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 46px;
    font-weight: 500;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* HEADER */

.top-bar {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.logo-text {
    font-size: 28px;
    font-weight: 600;
    color: #b89b5e;
    /* luxury gold */
}

.brand-sub {
    display: block;
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

/* HERO */

.hero {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 42px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
}

/* CONTENT SECTIONS */

.content {
    padding: 80px 20px;
    text-align: center;
    background: #ffffff;
}

.alt {
    background: #f3f1ec;
}

.services {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.services li {
    margin: 12px 0;
    font-size: 18px;
}

/* FORMS */

.form-section {
    padding: 80px 20px;
    background: #ffffff;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 15px;
}

textarea {
    min-height: 100px;
}

button {
    display: block;
    margin: 30px auto 0;
    padding: 14px 30px;
    background: #b89b5e;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: #a5874a;
}

/* CONTACT */

.contact-section {
    padding: 80px 20px;
    background: #f3f1ec;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-grid h3 {
    margin-bottom: 10px;
}

.contact-grid a {
    color: #b89b5e;
    text-decoration: none;
}

/* FOOTER */

footer {
    padding: 30px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #777;
}