body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    color: #222;
    background: #fcfcfc;
    line-height: 1.7;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    background: #fff;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 2px 8px rgba(180, 180, 180, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #bfa270;
}

nav a {
    text-decoration: none;
    color: #444;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #bfa270;
}

.hero {
    background: linear-gradient(rgba(255,255,255,0.93), rgba(255,255,255,0.99)),
                url('hero-placeholder.jpg') center/cover no-repeat;
    padding: 90px 0 60px 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    margin-bottom: 1rem;
    color: #bfa270;
    font-weight: 900;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-btn {
    display: inline-block;
    background: #bfa270;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75em 2em;
    border-radius: 25px;
    font-weight: 700;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(191, 162, 112, 0.12);
}

.cta-btn:hover {
    background: #a48a50;
    box-shadow: 0 4px 18px rgba(191, 162, 112, 0.22);
}

section {
    padding: 60px 0 40px 0;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #bfa270;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #444;
}

.offer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.offer-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(191,162,112,0.07), 0 0.5px 1.5px #bfa2701a;
    padding: 2rem 1.5rem;
    flex: 1 1 240px;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.offer-item:hover {
    box-shadow: 0 4px 16px rgba(191,162,112,0.17);
}

.offer-item h3 {
    font-family: 'Playfair Display', serif;
    color: #a48a50;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.offer-item p {
    color: #555;
    font-size: 1rem;
}

.contact p {
    text-align: center;
    margin-bottom: 1rem;
}

form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

input, textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.75em;
    border: 1px solid #e0d9ca;
    border-radius: 8px;
    background: #faf8f4;
    transition: border 0.2s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #bfa270;
    background: #fff;
}

button[type="submit"] {
    background: #bfa270;
    color: #fff;
    border: none;
    font-size: 1.05rem;
    padding: 0.8em 0;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(191, 162, 112, 0.12);
}

button[type="submit"]:hover {
    background: #a48a50;
    box-shadow: 0 4px 16px rgba(191, 162, 112, 0.22);
}

footer {
    background: #f8f4ef;
    text-align: center;
    padding: 1.2em 0;
    color: #a48a50;
    font-size: 1rem;
    border-top: 1px solid #ececec;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 700px) {
    .offer-list {
        flex-direction: column;
        gap: 1.2rem;
    }
    header .container {
        flex-direction: column;
        height: auto;
    }
    nav a {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
}