
:root{
  --bg:#0b0b0b;
  --text:#ededed;
  --muted:#8c8c8c;
  --accent:#c6a85e;
}

*{margin:0;padding:0;box-sizing:border-box;}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

header{
  padding:20px 0;
  border-bottom:1px solid #1c1c1c;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav img{
  height:60px;
}

.nav a{
  color:var(--text);
  text-decoration:none;
  margin-left:30px;
  font-size:14px;
  letter-spacing:1px;
}

.nav a:hover{
  color:var(--accent);
}

section{
  padding:120px 0;
}

.hero h1{
  font-family:'Playfair Display',serif;
  font-size:52px;
  margin-bottom:20px;
}

.hero p{
  max-width:650px;
  color:var(--muted);
}

.btn{
  display:inline-block;
  margin-top:30px;
  padding:14px 34px;
  border:1px solid var(--accent);
  color:var(--accent);
  text-decoration:none;
}

.btn:hover{
  background:var(--accent);
  color:#000;
}

h2{
  font-family:'Playfair Display',serif;
  font-size:36px;
  margin-bottom:30px;
}

p{
  color:var(--muted);
  margin-bottom:20px;
  max-width:750px;
}

footer{
  border-top:1px solid #1c1c1c;
  padding:50px 0;
  text-align:center;
  font-size:14px;
  color:var(--muted);
}

footer a{
  color:var(--muted);
  text-decoration:none;
  margin:0 15px;
}

footer a:hover{
  color:var(--accent);
}
