*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #050e1f;
  --card: #0d1a2d;
  --gold: #f4c430;
  --gold-hover: #e6b820;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --border: #1e2d42;
  --radius: 12px;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(5,14,31,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 0.5rem; }
.nav-logo span { color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--gold); color: #050e1f; padding: 0.5rem 1.25rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold-hover); }
@media (max-width: 768px) { .nav-links { display: none; } }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag { color: var(--gold); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; margin-bottom: 1rem; }
.section-subtitle { color: var(--muted); font-size: 1.05rem; max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.btn-primary { background: var(--gold); color: #050e1f; padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn-outline { border: 2px solid rgba(241,245,249,0.25); color: var(--text); padding: 0.85rem 2rem; border-radius: 50px; font-weight: 600; font-size: 1rem; transition: border-color 0.2s, background 0.2s; display: inline-flex; align-items: center; }
.btn-outline:hover { border-color: var(--gold); background: rgba(244,196,48,0.08); }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }
footer { background: var(--card); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-bottom: 0.75rem; }
.footer-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 { font-weight: 600; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 0.85rem; }