:root {
    --bg: #120e0a;
    --bronze: #cd7f32;
    --cream: #faf5eb;
    --font: 'Plus Jakarta Sans', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--cream); font-family: var(--font); overflow: hidden; height: 100vh; }

.nav { padding: 2.5rem 4rem; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(205,127,50,0.2); }
.logo { font-size: 1.4rem; font-weight: 700; color: var(--bronze); }
.motion { font-size: 0.85rem; color: #d97706; }

.hero { height: calc(100vh - 90px); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 2rem; }
h1 { font-size: 3.5rem; font-weight: 700; color: var(--bronze); margin-bottom: 1.5rem; max-width: 850px; line-height: 1.15; }
p { font-size: 1.2rem; color: #a8a29e; max-width: 600px; font-weight: 300; }