@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  --bg: #f4f2ec;
  --paper: #fffdf8;
  --ink: #192126;
  --muted: #556068;
  --line: #d9d5ca;
  --brand: #0f6d6a;
  --brand-dark: #0d4f4d;
  --accent: #f2a65a;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(19, 33, 38, 0.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% -10%, #f7dfbe 0%, transparent 35%),
    radial-gradient(circle at 90% 0%, #cbe8e7 0%, transparent 35%),
    var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

.wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.topbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  letter-spacing: 0.2px;
}

.brand span { color: var(--brand); }

.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.hero {
  padding: 72px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin-bottom: 14px;
}

h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: #d7efee;
  color: #0a4f4d;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 12px;
}

.cta-row {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover { background: var(--brand-dark); }

.btn-secondary {
  background: #fff;
  border-color: var(--line);
}

.trust-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 18px 0 48px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
}

.feature p,
.muted { color: var(--muted); }

.faq-item {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.faq-item:first-child { border-top: none; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field { margin-bottom: 12px; }

label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}

textarea { min-height: 120px; resize: vertical; }

.footer {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding: 20px 0 32px;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .features,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 42px; }
}
