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

body {
  font-family: 'Nunito', sans-serif;
  color: #4A3728;
  min-height: 100vh;
  min-height: 100dvh;
  background: #F5E2C8;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

@media (min-width: 540px) {
  .container {
    margin-top: 0;
    min-height: 100vh;
    min-height: 100dvh;
    box-shadow: 0 8px 40px rgba(74, 55, 40, 0.15), 0 2px 12px rgba(74, 55, 40, 0.08);
  }
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 57% 1.5rem 2rem;
}

.tagline {
  font-size: 1.15rem;
  font-weight: 700;
  color: #6B5344;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cta {
  display: block;
  width: 100%;
  max-width: 340px;
  padding: 1.1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  background: #D4892A;
  border: 3px solid #4A3728;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 4px 0 #4A3728;
  transition: transform 0.1s, box-shadow 0.1s;
  text-decoration: none;
  text-align: center;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #4A3728;
}

.cta:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #4A3728;
}
