:root {
    --bg: #000;
    --text: #fff;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Montserrat', 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; }

.nav { padding: 3rem 5rem; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.2); }
.logo { font-family: var(--font-head); font-size: 1.6rem; font-style: italic; letter-spacing: 2px; }
.agency { font-size: 0.8rem; letter-spacing: 3px; color: #888; }

.hero { height: calc(100vh - 100px); 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; max-width: 850px; }
p { font-size: 1.2rem; color: #888; max-width: 600px; font-weight: 300; }