:root {
  --bg: #f5f4f2;
  --text: #1a1a1a;
  --text-muted: #5a5a58;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.logo-wrap {
  margin-bottom: 2rem;
}

.logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 600px) {
  .logo {
    max-width: 360px;
  }
}

.tagline {
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
