:root{
  --bg: #F1ECE6;
  --text: #3A2F2B;
  --accent: #C07A63;
  --muted: #6B5F5A;
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.container{
  max-width: 500px;
  padding: 30px;
}

.logo{
  max-width: 280px;
  margin-bottom: 25px;
}

.tagline{
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--accent);
}

.intro{
  font-size: 18px;
  margin-bottom: 10px;
}

.sub{
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 25px;
}

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

.social a:hover{
  text-decoration: underline;
}