:root {
  --green: #2f6b3f;
  --green-dark: #24522f;
  --green-light: #eef5ee;
  --text: #2c2c2c;
  --muted: #6b6b6b;
  --bg: #faf9f6;
  --maxw: 1000px;
}

* { box-sizing: border-box; }

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

a { color: var(--green); }
a:hover { color: var(--green-dark); }

header.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e2da;
  padding: 0.8rem 1rem;
}
.site-header .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--green-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.logo span { color: var(--muted); font-weight: normal; }

nav.main-nav a {
  text-decoration: none;
  margin-left: 1.2rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
}
nav.main-nav a.active { border-bottom: 2px solid var(--green); padding-bottom: 2px; }

main { max-width: var(--maxw); margin: 0 auto; padding: 2rem 1rem 3rem; }

.hero {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.hero img { width: 100%; height: 380px; object-fit: cover; display: block; }
.hero .caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.1) 60%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.hero .caption h1 { margin: 0 0 .4rem; font-size: 2rem; }
.hero .caption p { margin: 0; max-width: 600px; }

h1, h2, h3 { font-family: Helvetica, Arial, sans-serif; color: var(--green-dark); }
h1 { font-size: 2rem; margin-top: 0; }
h2 { margin-top: 2.2rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.card {
  background: #fff;
  border: 1px solid #e5e2da;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .15s;
}
.card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.card .body { padding: 1rem 1.1rem 1.3rem; }
.card h3 { margin: 0 0 .4rem; font-size: 1.1rem; }
.card p { margin: 0; font-size: .95rem; color: var(--muted); }

.page-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  margin: 1.2rem 0;
}

.meta { color: var(--muted); font-size: .9rem; font-family: Helvetica, Arial, sans-serif; }

table.plants {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: .95rem;
  margin: 1.2rem 0;
}
table.plants th, table.plants td {
  border: 1px solid #e5e2da;
  padding: .6rem .8rem;
  text-align: left;
}
table.plants th { background: var(--green-light); font-family: Helvetica, Arial, sans-serif; }

.quote {
  border-left: 4px solid var(--green);
  margin: 1.5rem 0;
  padding: .5rem 1.2rem;
  color: var(--muted);
  font-style: italic;
}

footer.site-footer {
  background: var(--green-dark);
  color: #dfe9df;
  padding: 1.6rem 1rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: .9rem;
}
footer.site-footer .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer.site-footer a { color: #bfe0c4; }
