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

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #fffaf7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 247, 0.95);
  border-bottom: 1px solid #f1ddd4;
}

.nav {
  max-width: 1120px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  color: #7c3f58;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  color: #374151;
  text-decoration: none;
  font-weight: 600;
}

.menu-btn {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.5rem;
}

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(124, 63, 88, 0.76), rgba(124, 63, 88, 0.76)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-content {
  max-width: 900px;
  padding: 5rem 1.5rem;
  margin: auto;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
  color: #c0768f;
  margin-bottom: 0.75rem;
}

.hero .eyebrow {
  color: #ffe1eb;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

h3 {
  margin-bottom: 0.5rem;
  color: #7c3f58;
}

.hero-text {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.primary {
  background: #7c3f58;
  color: white;
}

.secondary {
  background: white;
  color: #7c3f58;
}

.section {
  max-width: 1120px;
  margin: auto;
  padding: 5rem 1.5rem;
}

.intro {
  text-align: center;
  max-width: 850px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 16px 40px rgba(124, 63, 88, 0.10);
  border: 1px solid #f1ddd4;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.steps div {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid #f1ddd4;
}

.steps span {
  display: inline-block;
  font-weight: 900;
  color: #c0768f;
  margin-bottom: 0.75rem;
}

.cta {
  margin: 3rem auto 0;
  max-width: 1000px;
  padding: 4rem 1.5rem;
  text-align: center;
  background: #2f1c26;
  color: white;
  border-radius: 2rem 2rem 0 0;
}

.cta .eyebrow {
  color: #ffe1eb;
}

.cta .primary {
  background: #ffe1eb;
  color: #7c3f58;
  margin-top: 1.5rem;
}

.small {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #2f1c26;
  color: white;
}

@media (max-width: 820px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fffaf7;
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    border-bottom: 1px solid #f1ddd4;
  }

  .nav-links.show {
    display: flex;
  }

  .cards,
  .steps,
  .about {
    grid-template-columns: 1fr;
  }
}
