@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=DM+Sans:wght@400;500;700&display=swap");

:root {
  --bg: #f7f3ec;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #1d1916;
  --muted: #71685f;
  --line: rgba(29, 25, 22, 0.12);
  --accent: #3f7a49;
  --accent-soft: rgba(63, 122, 73, 0.1);
  --shadow: 0 24px 60px rgba(20, 17, 14, 0.08);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  background: radial-gradient(circle at top, rgba(63, 122, 73, 0.08), transparent 28%), var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: transparent;
}

a {
  color: inherit;
}

.shell {
  width: min(960px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1.5px solid rgba(29, 25, 22, 0.18);
  background: var(--surface-strong);
  box-shadow: 0 12px 24px rgba(20, 17, 14, 0.08);
  display: grid;
  place-items: center;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.brand-mark span {
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-link {
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-size: 14px;
}

.pill-link.is-active {
  background: #171311;
  color: white;
  border-color: #171311;
}

.hero {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 36px;
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 7vw, 64px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.card {
  grid-column: span 12;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(20, 17, 14, 0.05);
  padding: 28px;
}

.card h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.02;
  font-weight: 600;
}

.card h3 {
  margin: 22px 0 10px;
  font-size: 17px;
  line-height: 1.3;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.card li + li {
  margin-top: 8px;
}

.accent-box {
  background: var(--accent-soft);
  border: 1px solid rgba(63, 122, 73, 0.15);
  border-radius: 24px;
  padding: 18px 20px;
}

.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fine-print {
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer {
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 720px) {
  .shell {
    width: min(100vw - 20px, 960px);
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .hero,
  .card {
    padding: 24px 20px;
    border-radius: 24px;
  }

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

  .pill-link {
    padding: 10px 14px;
  }
}
