:root {
  --bg: #f3f6f2;
  --ink: #14201a;
  --muted: #4d5c54;
  --card: #ffffff;
  --line: #d5e0d8;
  --accent: #1f6b45;
  --accent-2: #c45c26;
  --shadow: 0 18px 40px rgba(20, 32, 26, 0.08);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #dcebd6 0%, transparent 55%),
    radial-gradient(900px 400px at 100% 0%, #f6e4d4 0%, transparent 50%),
    var(--bg);
  line-height: 1.55;
}
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-2); }
.wrap { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; }
.site-header, .site-footer {
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  background: rgba(243, 246, 242, 0.85);
}
.site-footer { border-top: 1px solid var(--line); border-bottom: 0; margin-top: 4rem; }
.nav {
  display: flex; gap: 1rem; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 600; }
.hero {
  padding: 3.5rem 0 2rem;
  animation: rise 0.7s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0.4rem 0 0.8rem;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}
.lede { color: var(--muted); max-width: 42rem; font-size: 1.05rem; }
.stats {
  display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 1.5rem 0 0;
  color: var(--muted); font-weight: 600;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem 0 3rem;
}
.card, .panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  animation: rise 0.8s ease both;
}
.card h2 { font-family: var(--font-display); font-size: 1.35rem; margin: 0.3rem 0 0.6rem; line-height: 1.2; }
.card h2 a { color: inherit; text-decoration: none; }
.meta, .tiny { color: var(--muted); font-size: 0.92rem; }
.btn {
  display: inline-block;
  margin-top: 0.8rem;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none !important;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}
.btn:hover { background: #185637; }
.btn.secondary { background: transparent; color: var(--accent) !important; border: 1px solid var(--accent); }
table {
  width: 100%; border-collapse: collapse; background: var(--card);
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
}
th, td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #e7efe6; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.pill {
  display: inline-block; padding: 0.15rem 0.55rem; border-radius: 999px;
  background: #e7efe6; color: var(--accent); font-size: 0.75rem; font-weight: 700;
}
.price { font-family: var(--font-display); font-size: 1.8rem; margin: 0.4rem 0; }
.breadcrumbs { color: var(--muted); font-size: 0.9rem; margin: 1.5rem 0 0.5rem; }
.note {
  margin: 2rem 0; padding: 1rem 1.2rem; border-left: 4px solid var(--accent-2);
  background: #fff7f0; border-radius: 0 12px 12px 0; color: var(--muted);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 640px) {
  .hero { padding-top: 2rem; }
  th { display: none; }
  td { display: block; border: 0; }
  tr { display: block; padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
}
