:root {
  --bg: #f6f3ee;
  --ink: #142027;
  --accent: #cc5a2f;
  --accent-soft: #f2c9b7;
  --surface: #fffdfa;
  --stripe: #e9ece3;
  --shadow: 0 12px 40px rgba(20, 32, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #fff6ef 0%, var(--bg) 45%),
    linear-gradient(180deg, #fdfbf7, var(--bg));
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.2;
  margin-top: 0;
}

a {
  color: inherit;
}

.hero {
  padding: 1.2rem 1.2rem 4rem;
  min-height: 92vh;
  background: linear-gradient(155deg, #0d2d39 2%, #195069 54%, #2f7769 100%);
  color: #f8fbfd;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  right: -130px;
  top: -180px;
}

.nav,
.hero-content,
.section,
.footer {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 0;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.menu {
  display: flex;
  gap: 1.2rem;
  font-weight: 600;
}

.menu a {
  text-decoration: none;
}

.hero-content {
  padding-top: 4.6rem;
  max-width: 780px;
  animation: fadeUp 0.8s ease-out;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.82rem;
  color: #d7ecf5;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  max-width: 680px;
  color: #def4fb;
}

.actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: #ffd08f;
  color: #173042;
}

.btn-secondary {
  border: 2px solid #c4dfe8;
}

.section {
  padding: 4.2rem 1.2rem;
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
  border: 1px solid #eadfd7;
}

.stripe {
  background: linear-gradient(130deg, var(--stripe), #dde6d7);
  border-top: 1px solid #d5ddcf;
  border-bottom: 1px solid #d5ddcf;
}

.faq-item {
  margin-bottom: 0.9rem;
  background: #fef9f3;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 0.9rem 1rem;
}

.contact a {
  color: #0e6079;
  font-weight: 700;
}

.footer {
  padding: 1.2rem;
  text-align: center;
  color: #2c3d45;
}

@keyframes fadeUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 760px) {
  .menu {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 3.2rem;
  }

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