* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', sans-serif; background: #fff; color: #000; line-height: 1.6; }
header { position: fixed; top: 0; width: 100%; padding: 20px 50px; display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); z-index: 100; transition: 0.3s; }
.logo { font-size: 24px; font-weight: 700; }
nav ul { list-style: none; display: flex; gap: 40px; }
nav a { text-decoration: none; color: #000; font-weight: 500; font-size: 16px; }
nav a:hover { color: #A67C00; }

#hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px; }
.hero-content h1 { font-size: 80px; font-weight: 700; margin-bottom: 20px; }
.tagline { font-size: 32px; font-weight: 300; margin-bottom: 10px; }
.subtagline { font-size: 24px; opacity: 0.8; margin-bottom: 50px; }
.cta { background: transparent; border: 2px solid #000; padding: 15px 40px; font-size: 18px; text-decoration: none; color: #000; transition: 0.3s; }
.cta:hover { background: #000; color: #fff; }

section { padding: 150px 100px; text-align: center; max-width: 1200px; margin: 0 auto; }
section h2 { font-size: 60px; margin-bottom: 40px; font-weight: 700; }
section p { font-size: 24px; max-width: 800px; margin: 0 auto 50px; font-weight: 300; }
.cta-secondary { color: #A67C00; text-decoration: none; font-size: 20px; border-bottom: 2px solid #A67C00; padding-bottom: 5px; }

form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
input, textarea { padding: 15px; font-size: 18px; border: 1px solid #ddd; border-radius: 0; }
button { padding: 15px; background: #000; color: #fff; border: none; font-size: 18px; cursor: pointer; }
.contact-info { margin-top: 50px; font-size: 18px; opacity: 0.8; }

footer { text-align: center; padding: 50px; font-size: 14px; opacity: 0.6; }

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 50px; }
    section { padding: 100px 20px; }
    section h2 { font-size: 40px; }
    nav ul { flex-direction: column; gap: 20px; }
    header { padding: 20px; }
}