:root {
  --bg: #faf7f2;
  --card: #ffffff;
  --ink: #1c1a16;
  --muted: #6f6a60;
  --line: #ece6da;
  --accent: #2f6f4e;
  --accent-2: #57996b;
  --radius: 18px;
  --maxw: 1080px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2 { letter-spacing: -0.02em; }

/* nav */
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { font-weight: 900; font-size: 20px; }
.nav nav { display: flex; align-items: center; gap: 18px; font-weight: 600; }
.nav .cta {
  background: var(--accent); color: #fff; padding: 9px 16px;
  border-radius: 999px; font-weight: 700;
}

/* hero */
.hero { position: relative; overflow: hidden; }
.hero-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 110px) 20px clamp(40px, 6vw, 80px);
  position: relative; z-index: 1;
}
.eyebrow {
  color: var(--accent); font-weight: 800; letter-spacing: 0.02em;
  text-transform: uppercase; font-size: 13px; margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(2.6rem, 1rem + 7vw, 5.2rem);
  line-height: 1.02; margin: 0 0 20px; font-weight: 900;
}
.lead { font-size: clamp(1.05rem, 0.9rem + 0.6vw, 1.3rem); color: var(--muted); max-width: 620px; margin: 0 0 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { padding: 13px 24px; border-radius: 999px; font-weight: 800; display: inline-block; transition: transform .15s ease; }
.btn:active { transform: scale(.97); }
.btn.primary { background: var(--accent); color: #fff; box-shadow: 0 10px 30px rgba(47,111,78,.28); }
.btn.ghost { background: #fff; border: 1.5px solid var(--line); }
.hero-glow {
  position: absolute; inset: -30% -10% auto auto; width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(87,153,107,.35), transparent 65%);
  filter: blur(30px); z-index: 0;
}

/* sections */
section.cats, section.grid-wrap { max-width: var(--maxw); margin: 0 auto; padding: 30px 20px; }
h2 { font-size: clamp(1.5rem, 1rem + 1.5vw, 2.1rem); margin: 0 0 18px; }
.cat-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cat {
  display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 16px; font-weight: 700;
}
.cat-emoji { font-size: 20px; }
.cat small { color: var(--muted); font-weight: 600; }

.grid-head { display: flex; align-items: baseline; justify-content: space-between; }
.grid-head a { color: var(--accent); font-weight: 700; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 6px; }
.card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,.08); }
.thumb { aspect-ratio: 4 / 3; background-size: cover; background-position: center; background-color: #eee; }
.card-b { padding: 12px 14px 14px; }
.card-name { font-weight: 800; font-size: 15px; line-height: 1.25; }
.card-meta { display: flex; gap: 12px; color: var(--muted); font-size: 13px; margin-top: 8px; }

/* footer */
.foot {
  max-width: var(--maxw); margin: 40px auto 0; padding: 30px 20px 50px;
  border-top: 1px solid var(--line); color: var(--muted);
  display: flex; flex-direction: column; gap: 10px;
}
.foot-links { display: flex; gap: 16px; font-weight: 700; }
.foot-links a { color: var(--accent); }
.foot small { font-size: 12px; }
