:root {
    --bg: #ffffff;
    --surface: #fcfaf8;
    --accent: #b59970;
    --dark: #1a1a1a;
    --text: #4a4a4a;
    --radius-lg: 30px;
    --radius-sm: 12px;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }

nav { position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; padding: 1.5rem 8%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid #f0f0f0; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; text-decoration: none; color: var(--dark); font-weight: 700; }
.nav-links a { margin-left: 2rem; text-decoration: none; color: var(--dark); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.page-header { padding: 160px 8% 60px; text-align: center; background: var(--surface); margin-bottom: 60px; }
.page-header h2 { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--dark); }

.btn { display: inline-block; padding: 1.2rem 2.8rem; background: var(--dark); color: #fff; text-decoration: none; border-radius: 50px; font-weight: 600; transition: var(--transition); border: none; cursor: pointer; }
.btn:hover { background: var(--accent); transform: translateY(-3px); }

footer { padding: 4rem 8%; text-align: center; background: var(--surface); font-size: 0.8rem; letter-spacing: 1px; margin-top: 100px; border-top: 1px solid #eee; }