:root {
  --green-deep: #1a5c2a;
  --green: #2d8a3e;
  --green-light: #4caf50;
  --green-pale: #e8f5e9;
  --gold: #d4a017;
  --gold-light: #f5deb3;
  --gold-glow: #fff3c4;
  --cream: #faf9f4;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', sans-serif;

  --container: 960px;
  --gap: 2rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

/* ── ANNOUNCEMENT BAR ── */
.announcement {
  background: var(--green-deep);
  color: var(--gold-light);
  text-align: center;
  padding: .6rem 1rem;
  font-size: .85rem;
  letter-spacing: .03em;
  font-weight: 500;
}

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #e0ddd4;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 52px; width: auto; }
.main-nav { display: flex; gap: 1.8rem; }
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .92rem;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding: .25rem 0;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width .25s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--green-deep); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 5rem 1.25rem 4rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--green-pale) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,160,23,.12) 0%, transparent 70%);
  top: -80px; right: -80px;
  border-radius: 50%;
}
.hero-logo { width: 140px; height: auto; margin-bottom: 1.5rem; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-weight: 300;
}
.hero .badge {
  display: inline-block;
  background: var(--gold-glow);
  color: var(--green-deep);
  border: 1px solid var(--gold);
  padding: .45rem 1.4rem;
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ── SECTIONS ── */
.section { padding: 4rem 0; }
.section--alt { background: var(--white); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--green-deep);
  margin-bottom: .5rem;
}
.section-lead {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 300;
}

/* ── CARDS GRID ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white);
  border: 1px solid #e0ddd4;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: 0 8px 30px rgba(26,92,42,.08); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: .5rem;
}
.card p { color: var(--text-light); font-size: .95rem; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.25rem;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: .5rem;
}
.cta-band p { color: var(--gold-light); margin-bottom: 1.5rem; font-weight: 300; }
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  padding: .75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, transform .15s;
}
.btn:hover { background: #c4920f; transform: translateY(-1px); }

/* ── BLOG LIST ── */
.blog-list { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-item {
  background: var(--white);
  border: 1px solid #e0ddd4;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s;
}
.blog-item:hover { box-shadow: 0 6px 24px rgba(26,92,42,.07); }
.blog-item h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: .35rem;
}
.blog-item time { font-size: .82rem; color: var(--text-light); }
.blog-item p { color: var(--text-light); font-size: .95rem; margin-top: .5rem; }

/* ── SINGLE POST ── */
.post { max-width: 720px; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
.post h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--green-deep);
  line-height: 1.25;
  margin-bottom: .5rem;
}
.post-meta { color: var(--text-light); font-size: .85rem; margin-bottom: 2rem; }
.post-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--green-deep);
  margin: 2rem 0 .75rem;
}
.post-content h3 { font-weight: 600; margin: 1.5rem 0 .5rem; }
.post-content p { margin-bottom: 1rem; }
.post-content ul, .post-content ol { margin-bottom: 1rem; padding-left: 1.25rem; }
.post-content a { color: var(--green); text-decoration: underline; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: .75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--gold-glow);
  font-style: italic;
  color: var(--text-light);
}
.post-back { display: inline-block; margin-top: 2rem; color: var(--green); font-weight: 500; text-decoration: none; }
.post-back:hover { text-decoration: underline; }

/* ── PAGE (generic) ── */
.page { max-width: 720px; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
.page h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}
.page h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--green-deep); margin: 2rem 0 .75rem; }
.page p { margin-bottom: 1rem; }
.page ul { margin-bottom: 1rem; padding-left: 1.25rem; }

/* ── DISCLAIMER ── */
.disclaimer {
  margin-top: 3rem;
  padding: 1.25rem 1.5rem;
  background: var(--gold-glow);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: .9rem;
  color: var(--text-light);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.85);
  padding: 3rem 0 1.5rem;
  font-size: .92rem;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { height: 50px; margin-bottom: .75rem; filter: brightness(1.3); }
.footer-nav a, .footer-contact a { display: block; color: rgba(255,255,255,.7); text-decoration: none; margin-top: .35rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-nav h4, .footer-contact h4 { color: var(--gold-light); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 1rem; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid #e0ddd4;
    gap: .75rem;
  }
  .main-nav.is-open { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero-logo { width: 100px; }
}
