:root {
  --soil: #4b3621;
  --leaf: #466b3a;
  --seed: #b77935;
  --paper: #fbf7ef;
  --card: #ffffff;
  --soft: #efe4d3;
  --text: #2b261f;
  --muted: #6f665c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
}

.site-header {
  background: linear-gradient(135deg, var(--soil), #6a4a2b);
  color: #fff;
  padding: 44px 20px;
  text-align: center;
}

.site-header .eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.85;
}

.site-header h1 {
  margin: 8px 0 4px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.site-header p {
  margin: 0;
  font-size: 1.2rem;
  color: #f7e6c8;
}

.wrapper {
  width: min(1100px, calc(100% - 32px));
  margin: 28px auto 60px;
}

.seed-card, .panel {
  background: var(--card);
  border: 1px solid var(--soft);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(75, 54, 33, 0.08);
}

.seed-card {
  padding: 28px;
  margin-bottom: 24px;
}

.seed-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  background: #f2eadb;
  color: var(--soil);
  border: 1px solid #e1d1b8;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.86rem;
}

h2, h3 {
  color: var(--soil);
  line-height: 1.2;
}

.seed-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 8px;
}

.tagline {
  color: var(--muted);
  font-size: 1.15rem;
  margin-top: 0;
}

.layout {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 24px;
}

.panel {
  padding: 24px;
  margin-bottom: 24px;
}

video, audio {
  width: 100%;
  border-radius: 14px;
  background: #111;
}

ul.clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.clean li {
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid #f1e7d8;
  position: relative;
}

ul.clean li::before {
  content: "🌱";
  position: absolute;
  left: 0;
  top: 8px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #edf3e8;
  border: 1px solid #d7e4cf;
  color: var(--leaf);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.quote-box {
  border-left: 5px solid var(--seed);
  background: #fff8ec;
  padding: 18px 20px;
  border-radius: 12px;
  margin: 20px 0;
  font-size: 1.15rem;
}

.footer {
  text-align: center;
  color: var(--muted);
  padding: 30px 20px 50px;
}

.nav {
  margin-top: 18px;
}

.nav a, .button {
  display: inline-block;
  background: var(--leaf);
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  margin: 4px;
}

@media (max-width: 800px) {
  .layout { grid-template-columns: 1fr; }
  .seed-card, .panel { padding: 20px; }
}
