@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&family=Inter:wght@300;400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.tagline {
  margin-top: 12px;
  font-size: 1rem;
  color: #444;
}

.cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.cta a {
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid #111;
  color: #111;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.cta a:hover {
  background: #111;
  color: #fff;
}

.cta .secondary {
  border-color: #ccc;
  color: #444;
}

.section {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.section p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 16px;
}

footer {
  border-top: 1px solid #eee;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.8rem;
  color: #666;
}