@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

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

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

/* Logo */
.logo-wrap img {
  max-width: 180px;
  height: auto;
  margin-bottom: 2.5rem;
}

/* Divider */
.divider {
  width: 48px;
  height: 3px;
  background: #c8a96e;
  border-radius: 99px;
  margin: 0 auto 2rem auto;
}

/* Heading */
h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 0.75rem;
}

/* Subtext */
p {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #666;
  font-weight: 400;
  line-height: 1.6;
  max-width: 380px;
}

/* Responsive */
@media (max-width: 480px) {
  .logo-wrap img {
    max-width: 140px;
  }
}
