:root {
  --primary: #1a5c4a;
  --accent: #ff6b35;
  --accent2: #ffd23f;
  --bg: #fffaf5;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #666;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --radius: 20px;
  --container: 1100px;
  --font: "Trebuchet MS", Verdana, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); font-size: 1rem; line-height: 1.5; color: var(--text); background: var(--bg); }
a { color: var(--primary); }
img, svg { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-lg); }

/* Stacked header */
.header-stack { text-align: center; padding: var(--space-md) 0; border-bottom: 3px solid var(--accent); }
.header-stack .date-line { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.logo { font-size: 2.2rem; font-weight: 800; color: var(--accent); text-decoration: none; display: block; margin: 4px 0; }
.logo em { color: var(--primary); font-style: normal; }
.tagline { font-size: 0.85rem; color: var(--muted); }
.nav-row { display: flex; justify-content: center; gap: var(--space-md); flex-wrap: wrap; margin-top: var(--space-md); list-style: none; }
.nav-row a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.9rem; padding: 6px 14px; border-radius: 999px; background: var(--accent2); }
.nav-row a:hover, .nav-row a.active { background: var(--accent); color: #fff; }
.menu-toggle { display: none; margin-top: 8px; padding: 8px 16px; border: none; background: var(--accent); color: #fff; border-radius: 999px; cursor: pointer; }

/* Hero grid bento */
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
}
.hero-main {
  grid-row: span 2;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
}
.hero-main img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.75));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-xl);
  color: #fff;
}
.hero-overlay h1 { font-size: 1.8rem; line-height: 1.15; margin-bottom: 8px; }
.hero-overlay h1 a { color: #fff; text-decoration: none; }
.hero-overlay p { font-size: 0.9rem; opacity: 0.9; }
.hero-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 170px;
}
.hero-tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-tile .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: var(--space-md);
  display: flex; align-items: flex-end;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
.hero-tile a { color: #fff; text-decoration: none; }

/* Image overlay cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); padding-bottom: var(--space-xl); }
.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,92,74,0.9));
  padding: var(--space-lg);
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
}
.card .tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  width: fit-content;
}
.card h3 { font-size: 1rem; line-height: 1.25; }
.card h3 a { color: #fff; text-decoration: none; }
.card .meta { font-size: 0.75rem; opacity: 0.85; margin-top: 4px; }

/* Image heavy article */
.article-hero { position: relative; height: 50vh; min-height: 280px; max-height: 480px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff; padding: var(--space-xl) var(--space-lg);
}
.article-hero h1 { font-size: 2rem; max-width: 800px; }
.article-body { max-width: 680px; margin: 0 auto; padding: var(--space-xl) var(--space-lg); }
.article-body p { margin-bottom: var(--space-lg); }
.article-body h2 { color: var(--primary); font-size: 1.2rem; margin: var(--space-xl) 0 var(--space-md); }
.article-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: var(--space-md); }
.author-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--accent2); padding: 6px 12px; border-radius: 999px; font-size: 0.85rem; margin-bottom: var(--space-lg); }
.author-chip img { width: 28px; height: 28px; border-radius: 50%; }

.page-wrap { padding: var(--space-xl) 0; max-width: 720px; }
.page-wrap h1 { font-size: 1.8rem; color: var(--accent); margin-bottom: var(--space-md); }
.page-wrap p { margin-bottom: var(--space-lg); }
.page-wrap h2 { font-size: 1.1rem; color: var(--primary); margin: var(--space-xl) 0 var(--space-md); }

.btn { display: inline-block; background: var(--accent); color: #fff; padding: 10px 22px; border-radius: 999px; text-decoration: none; font-weight: 600; border: none; cursor: pointer; font-size: 0.9rem; }
.btn:hover { background: var(--primary); color: #fff; }

/* Stacked footer */
.site-footer { background: var(--primary); color: #c8e6d9; padding: var(--space-xl) var(--space-lg); }
.footer-stack { max-width: var(--container); margin: 0 auto; text-align: center; }
.footer-stack .logo-footer { font-size: 1.5rem; font-weight: 800; color: var(--accent2); margin-bottom: var(--space-md); }
.footer-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--space-lg); }
.footer-links a { color: #fff; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent2); }
.footer-copy { font-size: 0.75rem; opacity: 0.7; }

.cookie-notice {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--accent2); padding: var(--space-md) var(--space-lg);
  display: none; z-index: 200; text-align: center; font-size: 0.85rem;
}
.cookie-notice.show { display: block; }

.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px; border: 2px solid var(--accent2);
  border-radius: var(--radius); margin-bottom: var(--space-md); font-family: inherit;
}

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { grid-row: auto; min-height: 260px; }
  .card-grid { grid-template-columns: 1fr; }
  .nav-row { display: none; flex-direction: column; }
  .nav-row.open { display: flex; }
  .menu-toggle { display: inline-block; }
}
