* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f3f6f1, #e4efe6);
  color: #24352b;
  min-height: 100vh;
}

.container {
  max-width: 520px;
  margin: auto;
  padding: 48px 20px;
  text-align: center;
}

.logo {
  max-width: 210px;
  margin-bottom: 32px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 22px;
  line-height: 1.6;
}

.description {
  font-size: 0.95rem;
  color: #405a4b;
  margin-bottom: 26px;
  line-height: 1.65;
}

.highlights {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.highlights span {
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  background: #e0ece3;
  color: #2f4b3b;
}

.contact {
  font-size: 0.95rem;
  margin-bottom: 42px;
}

.contact a {
  color: #24352b;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #24352b;
}

footer {
  font-size: 0.75rem;
  color: #6c8376;
}

/* Desktop refinement */
@media (min-width: 768px) {
  .container {
    max-width: 640px;
    padding-top: 90px;
  }

  h1 {
    font-size: 2.8rem;
  }
}
