
:root {
  --bg:#F6F5F2;
  --text:#141414;
  --muted:#6E6E6E;
  --accent:#A38B73;
  --border:#E7E4DF;
}

body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: Inter, sans-serif;
}

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

.hero {
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background-size:cover;
  background-position:center;
}

h1 { font-weight:400; letter-spacing:0.02em; }

.button {
  padding:14px 28px;
  background:#141414;
  color:#fff;
  display:inline-block;
}
