:root {
    --bg: #140508;
    --burgundy: #7209b7;
    --gold: #d4af37;
    --cream: #fdf0d5;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--cream); font-family: var(--font-body); overflow: hidden; height: 100vh; }

.nav { padding: 3rem 5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(212,175,55,0.2); }
.logo { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); }
.title { font-size: 0.8rem; letter-spacing: 2px; color: #aaa; }

.hero { height: calc(100vh - 100px); display: flex; align-items: center; justify-content: center; padding: 0 2rem; }

.glass-card { background: rgba(114, 9, 183, 0.08); border: 1px solid rgba(212,175,55,0.3); padding: 4rem; border-radius: 16px; max-width: 650px; text-align: center; }
.vintage { font-size: 0.8rem; letter-spacing: 4px; color: var(--gold); display: block; margin-bottom: 1.5rem; }
h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
p { font-size: 1.1rem; color: #ccc; margin-bottom: 2.5rem; font-weight: 300; }

.btn-clink { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 1rem 2.5rem; font-family: var(--font-head); font-size: 0.9rem; cursor: pointer; transition: 0.3s; }
.btn-clink:hover { background: var(--gold); color: #000; box-shadow: 0 0 25px rgba(212,175,55,0.4); }