*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #2d4a1e;
  --green-mid:    #3B6D11;
  --green-light:  #EAF3DE;
  --green-deep:   #27500A;
  --white:        #ffffff;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-500:     #6b7280;
  --gray-900:     #111827;
  --font-display: 'Lora', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  font-size: 16px;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 56px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-900);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green-mid); }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-mid);
  border: 1px solid var(--green-mid);
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--green-mid);
  color: var(--white);
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--green-dark);
  padding: 52px 40px 44px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.page-header-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  line-height: 1.6;
}

/* ── SECTIONS ── */
section { padding: 52px 40px; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 24px;
  line-height: 1.25;
}

hr.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 0 40px;
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--green-light);
  color: var(--green-deep);
}

.tag.urgent {
  background: #FEE2E2;
  color: #991B1B;
}

.tag.info {
  background: #DBEAFE;
  color: #1E40AF;
}

.tag.event {
  background: #FEF3C7;
  color: #92400E;
}

.tag.restricted {
  background: #FEE2E2;
  color: #991B1B;
}

/* ── FOOTER ── */
footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p { font-size: 12px; color: var(--gray-500); }

footer a {
  font-size: 12px;
  color: var(--green-mid);
  text-decoration: none;
}

footer a:hover { text-decoration: underline; }

/* ── LIGHTBOX ── */
.lightbox-trigger {
  display: block;
  cursor: zoom-in;
  border-radius: 10px;
  overflow: hidden;
}

.lightbox-trigger img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox-trigger:hover img {
  transform: scale(1.03);
  opacity: 0.92;
}

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255,255,255,0.8);
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.lightbox-close:hover { color: var(--white); }

.subscribe-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--green-dark);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.subscribe-left { display: flex; align-items: center; gap: 14px; }
.subscribe-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.subscribe-icon svg { width: 18px; height: 18px; }
.subscribe-text h4 { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.subscribe-text p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.subscribe-btn {
  display: inline-block; background: var(--white); color: var(--green-dark);
  font-size: 13px; font-weight: 500; padding: 9px 20px; border-radius: 8px;
  text-decoration: none; white-space: nowrap; transition: opacity 0.2s; flex-shrink: 0;
}
.subscribe-btn:hover { opacity: 0.9; }
@media (max-width: 600px) { .subscribe-card { flex-direction: column; align-items: flex-start; } }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 36px 20px; }
  hr.divider { margin: 0 20px; }
  .page-header { padding: 40px 20px 32px; }
  .page-header h1 { font-size: 26px; }
  footer { flex-direction: column; gap: 8px; text-align: center; }
}
