:root {
    --dark: #111;
    --gold: #bfa36a;
    --light: #f7f7f7;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.topbar {
    position: fixed;
    width: 100%;
    background: white;
    border-bottom: 1px solid #eee;
    z-index: 100;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.95rem;
}

.btn {
    border: 1px solid var(--gold);
    padding: 10px 20px;
    color: var(--gold);
}

.btn.large {
    padding: 14px 30px;
    font-size: 1rem;
}

.hero {
    height: 100vh;
    background: url("assets/hero.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.section {
    padding: 100px 0;
    background: var(--light);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.cta {
    padding: 120px 20px;
    text-align: center;
}

.footer {
    padding: 40px;
    text-align: center;
    font-size: 0.85rem;
    background: #fafafa;
}
