*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #24634a;
  --green-light: #2d7a56;
  --green-pale: #d8f3dc;
  --tan: #f4f1de;
  --text: #1a1a1a;
  --text-muted: #555;
  --border: #ddd;
  --max-w: 760px;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
}

a { color: var(--green); text-decoration: underline; }
a:hover { color: #1b4332; }

/* Nav */
nav.site-nav {
  background: var(--green);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 60px;
}
.nav-brand {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: -0.02em;
}
.nav-brand:hover { color: var(--green-pale); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  color: var(--green-pale);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: system-ui, sans-serif;
}
.nav-links a:hover { color: #fff; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}
.nav-toggle:focus-visible { outline: 2px solid var(--green-pale); outline-offset: 2px; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--green);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
  text-decoration: none;
  font-family: system-ui, sans-serif;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* Focus styles */
a:focus-visible, button:focus-visible { outline: 2px solid var(--green-light); outline-offset: 2px; }

/* Main */
.content-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Hero */
.hero {
  background: var(--green);
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; }
.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  background: #fff;
  color: var(--green);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-weight: bold;
  font-size: 1rem;
}
.btn:hover { background: var(--green-pale); color: var(--green); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  margin-left: 0.75rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Value props */
.value-props {
  background: var(--tan);
  padding: 3rem 1.5rem;
}
.value-props-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.value-props h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.prop {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid var(--green-light);
}
.prop h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--green); font-family: system-ui, sans-serif; }
.prop p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* Blog cards */
.post-list { list-style: none; }
.post-card {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.post-card:last-child { border-bottom: none; }
.post-card h2 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.post-card h2 a { text-decoration: none; color: var(--text); }
.post-card h2 a:hover { color: var(--green-light); }
.post-meta { font-size: 0.85rem; color: var(--text-muted); font-family: system-ui, sans-serif; margin-bottom: 0.75rem; }
.post-excerpt { color: var(--text-muted); font-size: 0.95rem; }
.post-card-img-link { display: block; text-decoration: none; }
.post-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  background: var(--green-pale);
}
.featured-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  background: var(--green-pale);
}

/* Seasonal tag chips */
.tag-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.5rem; }
.tag-chip {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  line-height: 1.4;
}
.tag-year-round { background: #d4edda; color: #155724; }
.tag-cool-season { background: #d1ecf1; color: #0c5460; }
.tag-warm-season { background: #ffe8cc; color: #854d0e; }
.tag-spring-start { background: #e8f5e9; color: #2e7d32; }
.tag-hurricane-prep { background: #f8d7da; color: #721c24; }

/* Breadcrumb */
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  margin: 0 0 1.25rem;
  padding: 0;
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li + li::before { content: "\203A"; margin-right: 0.3rem; color: var(--text-muted); }
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--text-muted); }

/* Author byline */
.post-author { font-weight: 600; }

/* Table of Contents */
.toc {
  background: var(--tan);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
  font-family: system-ui, sans-serif;
}
.toc-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--green);
}
.toc ol {
  margin: 0;
  padding-left: 1.25rem;
}
.toc li { margin-bottom: 0.3rem; font-size: 0.9rem; }
.toc a { color: var(--green); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* FAQ section */
.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-weight: bold; font-size: 1.05rem; margin-bottom: 0.5rem; }
.faq-answer { color: var(--text-muted); margin: 0; }

/* Article */
article h1 { font-size: 2rem; line-height: 1.25; margin-bottom: 0.5rem; }
article .post-meta { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
article h2 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
article h3 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
article p { margin-bottom: 1.25rem; }
article ul, article ol { margin: 0 0 1.25rem 1.5rem; }
article li { margin-bottom: 0.4rem; }
article blockquote {
  border-left: 4px solid var(--green-light);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--green-pale);
  border-radius: 0 4px 4px 0;
}

/* Page title */
.page-header {
  border-bottom: 2px solid var(--green-light);
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}
.page-header h1, .page-header h2 { font-size: 2rem; }
.page-header p { color: var(--text-muted); margin-top: 0.5rem; }

/* About */
.about-section { margin-bottom: 2.5rem; }
.about-section h2 { font-size: 1.3rem; color: var(--green); margin-bottom: 0.75rem; }

/* Related articles */
.related-articles {
  border-top: 2px solid var(--green-pale);
  margin-top: 3rem;
  padding-top: 1.5rem;
}
.related-articles h2 {
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.related-articles ul {
  list-style: none;
  padding: 0;
}
.related-articles li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
}
.related-articles li:last-child { border-bottom: none; }
.related-articles a { color: var(--green); text-decoration: none; font-weight: 600; }
.related-articles a:hover { text-decoration: underline; }

/* CTA strip */
.cta-strip {
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0 0;
}
.cta-strip h2 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.cta-strip p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* Footer */
footer {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  font-family: system-ui, sans-serif;
}
footer a { color: #fff; text-decoration: underline; }
footer a:hover { color: var(--green-pale); }

/* Email signup block */
.email-signup {
  background: var(--green);
  padding: 3rem 1.5rem;
  margin: 3rem 0 0;
}
.email-signup-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.email-signup-text h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.email-signup-text p {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.email-form-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.email-input {
  flex: 1 1 220px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  font-family: system-ui, sans-serif;
}
.email-input:disabled { opacity: 0.6; cursor: not-allowed; }
.email-btn {
  flex-shrink: 0;
  background: var(--green-pale);
  color: var(--green);
  padding: 0.75rem 1.5rem;
}
.email-btn:hover { background: #fff; }
.email-fine-print {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-family: system-ui, sans-serif;
  margin-top: 0.75rem;
}

/* Lead magnet content box */
.lead-magnet-box {
  background: var(--tan);
  border-left: 4px solid var(--green-light);
  border-radius: 0 6px 6px 0;
  padding: 2rem;
  margin: 2rem 0;
}
.lead-magnet-box h2 { font-size: 1.3rem; color: var(--green); margin-bottom: 1rem; }
.lead-magnet-box h3 { font-size: 1.1rem; color: var(--green); margin: 1.5rem 0 0.5rem; }
.lead-magnet-box ul { margin-left: 1.5rem; }
.lead-magnet-box li { margin-bottom: 0.5rem; font-size: 0.95rem; }

/* ROI table */
.roi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  font-family: system-ui, sans-serif;
  margin: 1rem 0;
}
.roi-table th {
  background: var(--green);
  color: #fff;
  text-align: left;
  padding: 0.5rem 0.75rem;
}
.roi-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
}
.roi-table tr:last-child td { border-bottom: none; }
.roi-table tr:nth-child(even) td { background: #f9f9f9; }

/* Amazon product card */
.amazon-card {
  display: flex;
  gap: 1.25rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-light);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem;
  margin: 1.5rem 0;
  background: #fff;
  align-items: flex-start;
}
.amazon-card-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}
.amazon-card-body { flex: 1; }
.amazon-card-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.amazon-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.amazon-card-cta {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-weight: bold;
  font-size: 0.9rem;
}
.amazon-card-cta:hover { background: var(--green-light); color: #fff; }
.amazon-card-disclosure {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: system-ui, sans-serif;
  margin-top: 0.25rem;
}
a[rel*="sponsored"]:not(.amazon-card-cta)::after {
  content: " (paid link)";
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: normal;
}

/* Affiliate disclosure */
.affiliate-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: system-ui, sans-serif;
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

@media (max-width: 600px) {
  .nav-toggle { display: block; min-width: 44px; min-height: 44px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--green);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    z-index: 50;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.5rem 0; }
  .nav-links a { font-size: 1rem; min-height: 44px; display: inline-flex; align-items: center; }
  nav.site-nav { position: relative; }
  .hero h1 { font-size: 1.7rem; }
  .hero .btn-outline { display: none; }
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; width: 100%; }
  .cta-strip .btn { margin-bottom: 0.5rem; }
  .cta-strip .btn-outline { display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 44px; margin-left: 0; }
  .email-form-row { flex-direction: column; }
  .email-btn { width: 100%; text-align: center; min-height: 44px; }
  .amazon-card { flex-direction: column; }
  .amazon-card-img { width: 100%; max-width: 200px; }
  .amazon-card-cta { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  article a { padding: 0.25rem 0; }
}
