:root {
    --primary: #5f7a7d; /* Sage/Slate blue */
    --accent: #d4a373;  /* Warm sand */
    --dark: #333;
    --light: #f9f9f9;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: var(--dark);
    line-height: 1.6;
}

h1, h2 { font-family: 'Playfair Display', serif; }

nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.main-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}

.main-button:hover { transform: scale(1.05); background: var(--primary); }

.contact-section { padding: 80px 10%; background: var(--light); text-align: center; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 5px;
}