:root {
    --bg: #0d080a;
    --rose: #e8a598;
    --gold: #d4af37;
    --text: #faf0ed;
    --font-head: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); overflow: hidden; height: 100vh; }

canvas#trailCanvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 1; }

.nav { position: fixed; top: 0; width: 100%; padding: 2.5rem 4rem; display: flex; justify-content: space-between; align-items: center; z-index: 10; border-bottom: 1px solid rgba(232,165,152,0.2); }
.logo { font-family: var(--font-head); font-size: 1.6rem; font-style: italic; color: var(--rose); }
.tag { font-size: 0.8rem; letter-spacing: 3px; color: #888; }

.hero { position: relative; z-index: 5; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 2rem; }
h1 { font-family: var(--font-head); font-size: 4rem; font-style: italic; line-height: 1.1; margin-bottom: 1.5rem; color: var(--rose); max-width: 800px; }
p { font-size: 1.2rem; color: #aaa; max-width: 600px; font-weight: 300; }