:root {
  --bg: #faf7f2;
  --accent: #5c4033;
  --highlight: #a0522d;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--accent);
  line-height: 1.6;
}

header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  height: 50px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}

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

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  padding: 20px;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}
