* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, #f8f4ed 0%, transparent 45%),
    linear-gradient(135deg, #f4efe7, #e9e7df);
  color: #4f554b;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.card {
  width: min(720px, 100%);
  text-align: center;
  padding: 70px 50px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(140, 133, 117, 0.2);
  border-radius: 28px;
  box-shadow: 0 25px 80px rgba(75, 75, 65, 0.08);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: #a6977d;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #555b51;
}

.headline {
  margin: 30px auto 18px;
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.2;
}

.description {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #6b7067;
}

.services {
  margin: 35px auto 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.services span {
  padding: 9px 14px;
  border: 1px solid #d9d2c5;
  border-radius: 30px;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.5);
}

.journey {
  margin: 30px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.dot {
  margin: 0 8px;
  color: #b8a17d;
}

.whatsapp {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 24px;
  text-decoration: none;
  color: white;
  background: #596157;
  border-radius: 40px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.whatsapp:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer {
  margin: 38px 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #969b91;
}

@media (max-width: 600px) {
  .card {
    padding: 50px 24px;
    border-radius: 20px;
  }

  .services {
    gap: 8px;
  }
}
