@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,650;9..144,800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #101813;
  --ink-soft: #34433a;
  --muted: #68756c;
  --line: #dbe3dc;
  --paper: #fbfaf5;
  --surface: #ffffff;
  --forest: #0f5138;
  --leaf: #1fa469;
  --lime: #d8f34a;
  --tomato: #e4572e;
  --dark: #09120d;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 64px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img { width: 34px; height: 34px; }
.brand span { color: var(--leaf); }

.nav-spacer { flex: 1; }

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-action.primary {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.page-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 24px 88px;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(31, 164, 105, 0.28);
  border-radius: 8px;
  background: #eef9f1;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; }

h1 {
  margin-top: 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 3rem;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  margin-top: 34px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.14;
}

p, li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

ul { padding-left: 20px; }

.page-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

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

.price-card.featured { border-color: var(--forest); box-shadow: 0 18px 50px rgba(16, 24, 19, 0.12); }
.price-name { color: var(--muted); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.price-value { margin-top: 10px; font-size: 2.1rem; font-weight: 900; }
.price-value small { color: var(--muted); font-size: 0.84rem; }

.note {
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.88rem;
}

footer {
  padding: 34px 40px;
  background: var(--dark);
  color: #b7c4b9;
}

footer .inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer a { color: #edf8ee; margin-left: 14px; }

@media (max-width: 760px) {
  .site-nav { padding: 0 14px; gap: 10px; }
  .nav-action { min-height: 36px; padding: 0 10px; }
  .page-shell { padding: 48px 20px 64px; }
  h1 { font-size: 2.35rem; }
  .price-grid { grid-template-columns: 1fr; }
}
