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

html,
body {
  height: 100%;
}

body {
  font-family: 'Georgia', serif;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

h1 {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.brand h1 {
  margin-bottom: 0;
}

.logo {
  width: 40px;
  height: auto;
  display: block;
}

.tagline {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 40px;
}

.cta {
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: #000;
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #000;
}
