@font-face {
  font-family: 'RobotoSlab';
  src: url('/assets/RobotoSlab-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

:root {
  --accent: #7e5228; 
  --accent-hover:  #bc9b58;
  --text: #1d1d1b;
  --bg: #faf9f7;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'RobotoSlab', serif;
}

.header {
  text-align: center;
  padding: 32px 0 12px;
}

.logo {
  height: 150px;
  width: auto;
}

.content {
  max-width: 600px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
  line-height: 1.6;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 20px;
  transition: background .2s;
}

.cta:hover {
  background: var(--accent-hover);
}

.footer {
  text-align: center;
  padding: 30px 0;
  opacity: 0.6;
  font-size: 0.95rem;
}

@media (max-width: 520px) {
  .logo {
    height: 120px;
  }
  h1 {
    font-size: 1.6rem;
  }
  .cta {
    width: 100%;
  }
}
