@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Source+Serif+4:wght@400;600&display=swap");

:root {
  --bg: #f4f1ea;
  --surface: #fffdfa;
  --text: #1d1f24;
  --muted: #5f6674;
  --line: #ddd4c7;
  --brand: #0f4c5c;
  --brand-strong: #073542;
  --accent: #b0652a;
  --radius: 16px;
  --shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f4f1ea 0%, #efe9de 100%);
}

.shell {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.brand-mark {
  background: var(--brand);
  color: #f7f2ea;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 10px;
  padding: 9px 14px;
}

.brand-text {
  font-weight: 600;
  font-size: 0.98rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover { color: var(--brand-strong); }

.hero { padding: 72px 0 30px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1 {
  margin: 12px 0 0;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.08;
}

.lead {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.02rem;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  transition: transform 120ms ease, opacity 120ms ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--brand-strong);
  background: var(--surface);
}

.section { padding: 14px 0 70px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.card h2 {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-size: 1.4rem;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.6;
}

.card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.9);
}

.footer-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.footer a {
  color: var(--brand-strong);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 860px) {
  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .hero-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
