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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #dac7b8;
  font-family: 'Outfit', sans-serif;
  color: #4a3f35;
  padding: 2rem 1.5rem;
  text-align: center;
}

.block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo {
  max-width: min(320px, 85vw);
  height: auto;
  border-radius: 50%;
}

.message {
  max-width: 420px;
  margin-bottom: 1.75rem;
}

.message h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  color: #3d342c;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.message p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.9;
}

.cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  color: #5a4f45;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(74, 63, 53, 0.15);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cta a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #3d342c;
  border-color: rgba(74, 63, 53, 0.25);
}

.cta a svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
