:root {
    --bg: #fdfbf9;
    --text: #1a1a1a;
    --accent: #8b735b;
    --gold: #c5a059;
    --white: #ffffff;
    --serif: 'Playfair Display', serif;
    --sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.8;
}

nav {
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    padding: 2rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(253, 251, 249, 0.98);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.logo {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 4px;
}

nav ul { display: flex; list-style: none; gap: 18px; }

nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav a:hover { color: var(--accent); border-bottom: 1px solid var(--accent); }

.hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content { position: relative; z-index: 10; max-width: 900px; }
.hero-content h1 { font-family: var(--serif); font-size: 3.5rem; line-height: 1; font-weight: 300; }

.container { max-width: 1200px; margin: 6rem auto; padding: 0 5%; }

.section-title { font-family: var(--serif); font-size: 3rem; margin-bottom: 3rem; position: relative; text-align: center;}
.section-title::after { content: ''; display: block; width: 50px; height: 2px; background: var(--accent); margin: 20px auto; }

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

.card { background: white; padding: 20px; border-radius: 2px; }
.card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 1rem; transition: 0.5s ease; }
.card:hover img { transform: scale(1.02); }

.review-card { background: #fff; padding: 3rem; border: 1px solid #eee; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.stars { color: var(--gold); letter-spacing: 5px; margin-bottom: 1.5rem; }

.guide-box { border: 1px solid var(--accent); padding: 3rem; background: #fff; }
.guide-list { list-style: none; margin-top: 2rem; }
.guide-list li { margin-bottom: 1.5rem; padding-left: 35px; position: relative; }
.guide-list li::before { content: '✧'; position: absolute; left: 0; color: var(--accent); font-size: 1.2rem; }

form input, form textarea { width: 100%; padding: 18px; margin-bottom: 20px; border: 1px solid #e0e0e0; background: #fafafa; outline: none; transition: 0.3s; }
form input:focus, form textarea:focus { border-color: var(--accent); background: #fff; }

.btn-dark { background: var(--text); color: white; padding: 15px; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 2px; font-size: 0.7rem; transition: 0.4s; }
.btn-dark:hover { background: var(--accent); letter-spacing: 4px; }

footer { padding: 5rem; background: #1a1a1a; color: #fff; text-align: center; font-size: 0.7rem; letter-spacing: 1px; }

.page-section { display: none; animation: fadeIn 0.8s ease; }
.page-section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }