/* ============================================
   Root & Rented — Design Tokens
   ============================================ */
:root {
  --moss: #3A4530;
  --paper: #F6F5F0;
  --terra: #A8562E;
  --sprout: #8FA968;
  --ink: #1C2118;
  --paper-dim: #ECEAE2;
  --line: #D8D5C9;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1120px;
}

@font-face {
  font-family: "Fraunces";
  src: local("Fraunces");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo span { color: var(--terra); }

.site-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}

.hero .eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terra);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 20px;
  max-width: 14ch;
  color: var(--ink);
}

.hero p.lede {
  font-size: 19px;
  max-width: 52ch;
  color: #4A5040;
  margin: 0 0 28px;
}

.hero-cta {
  display: inline-block;
  background: var(--moss);
  color: var(--paper);
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
}

/* ---------- Plant Tag badges (signature element) ---------- */
.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.plant-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--paper);
  border: 1.5px solid var(--moss);
  border-radius: 3px;
  padding: 6px 12px 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--moss);
  position: relative;
}

.plant-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.plant-tag.light::before { background: #E8B84B; }
.plant-tag.pet::before { background: var(--sprout); }
.plant-tag.space::before { background: var(--terra); }

/* ---------- Section headings ---------- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 64px 0 28px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0;
}

.section-head a {
  font-size: 14px;
  font-weight: 600;
  color: var(--terra);
  text-decoration: none;
}

/* ---------- Article cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}

.card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sprout), var(--moss));
}

.card-body { padding: 18px 20px 22px; }

.card .kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terra);
  margin-bottom: 8px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 10px;
  line-height: 1.25;
}

.card p {
  font-size: 14.5px;
  color: #5B5F51;
  margin: 0;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--paper-dim);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  margin-top: 64px;
}

.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.trust-item .num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--moss);
}

.trust-item p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #5B5F51;
}

/* ---------- Article page ---------- */
.article-header {
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--line);
}

.article-header .kicker {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terra);
  margin-bottom: 14px;
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 18px;
  max-width: 20ch;
}

.article-body {
  max-width: 68ch;
  margin: 40px auto;
  padding: 0 24px;
  font-size: 18px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-top: 48px;
}

.article-body p { margin: 0 0 22px; color: #333A2B; }

.plant-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px 22px;
  margin: 28px 0;
  background: #fff;
}

.plant-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  margin: 0 0 10px;
}

.disclosure {
  font-size: 13px;
  color: #767a6c;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 48px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  margin-top: 60px;
}

.site-footer p {
  font-size: 13px;
  color: #767a6c;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .site-nav { display: none; }
  .hero { padding: 48px 0 40px; }
}
