:root{
  --black:#0f0f0f;
  --gold:#c9a24d;
  --white:#ffffff;
  --gray:#b5b5b5;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  background:var(--black);
  color:var(--white);
  line-height:1.6;
}

h1,h2,h3{
  font-family:'Playfair Display', serif;
  font-weight:600;
  letter-spacing:1px;
}

.container{
  width:90%;
  max-width:1100px;
  margin:auto;
}

.narrow{
  max-width:700px;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  text-align:center;
}

.hero h1{
  font-size:3.5rem;
  color:var(--gold);
  margin-bottom:1rem;
}

.subtitle{
  color:var(--gray);
  margin-bottom:2rem;
}

.buttons{
  display:flex;
  justify-content:center;
  gap:1rem;
  flex-wrap:wrap;
}

.btn{
  padding:14px 28px;
  text-decoration:none;
  font-size:0.9rem;
  letter-spacing:1px;
}

.primary{
  background:var(--gold);
  color:var(--black);
}

.secondary{
  border:1px solid var(--gold);
  color:var(--gold);
}

.section{
  padding:80px 0;
  text-align:center;
}

.section.dark{
  background:#141414;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:2rem;
  margin-top:3rem;
}

.card{
  background:#1c1c1c;
  padding:30px;
  border:1px solid #222;
}

.card h3{
  color:var(--gold);
  margin-bottom:10px;
}

.cta{
  background:linear-gradient(135deg,#111,#1a1a1a);
}

footer{
  padding:30px;
  text-align:center;
  font-size:0.8rem;
  color:#777;
}
