* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #1f2933;
  background: #fbfaf7;
  line-height: 1.6;
}

a {
  color: #335c67;
}

.hero {
  min-height: 72vh;
  background:
    linear-gradient(135deg, rgba(31,41,51,0.88), rgba(51,92,103,0.78)),
    radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 35%);
  color: white;
  padding: 24px;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.nav-link {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.55);
}

.hero-content {
  max-width: 900px;
  margin: 110px auto 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #d9e6ea;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  line-height: 1.02;
  margin: 0 0 22px;
  max-width: 920px;
}

.subhead {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  max-width: 720px;
  margin-bottom: 34px;
  color: #eef5f6;
}

.button {
  display: inline-block;
  background: #ffffff;
  color: #1f2933;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.section {
  margin: 0 auto 56px;
  max-width: 860px;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section p {
  font-size: 1.1rem;
}

.card-grid {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: white;
  border: 1px solid #ece7dc;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(31,41,51,0.06);
}

.card h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.process ol {
  padding-left: 22px;
  font-size: 1.08rem;
}

.process li {
  margin-bottom: 10px;
}

.contact {
  background: #ffffff;
  border: 1px solid #ece7dc;
  border-radius: 22px;
  padding: 34px;
  text-align: center;
}

.email {
  font-size: 1.2rem;
  font-weight: 700;
}

footer {
  text-align: center;
  padding: 24px;
  color: #68717a;
  border-top: 1px solid #ece7dc;
}

@media (max-width: 760px) {
  .hero-content {
    margin-top: 72px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }
}
