/* ============================================
   HARVESTING THE SUN TWICE ÃÂÃÂ¢ÃÂÃÂÃÂÃÂ Global Stylesheet
   Design: Editorial / Agricultural / Authoritative
   Palette: Deep forest green, warm wheat gold, 
            chalk white, charcoal ink
   Fonts: Playfair Display (headings) + Source Serif 4 (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --forest:    #1a3a2a;
  --fern:      #2d5a3d;
  --moss:      #4a7c5f;
  --sage:      #8aab96;
  --mist:      #d4e4d8;
  --wheat:     #c8a84b
  --gold:      #e0b84e;
  --straw:     #f5edcc;
  --chalk:     #fafaf7;
  --ink:       #1c1c1a
  --graphite:  #3d3d3a;
  --stone:     #7a7a75;
  --rule:      #d0d0c8;


   
   --nav-h: 68px;
  --max-w: 1140px;
  --radius: 4px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 4px rgba(26,58,42,0.08);
  --shadow-md: 0 4px 20px rgba(26,58,42,0.12);
  --shadow-lg: 0 12px 48px rgba(26,58,42,0.16);

  --trans: 0.22s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.68;
  color: var(--ink);
  background: var(--chalk);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--fern); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--wheat); }

/* ---- Typography ---- */

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.18;
  color: var(--forest);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--forest); }
em { font-style: italic; }

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88em;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 5rem 0;
}
.section--tight {
  padding: 3rem 0;
}
.section--dark {
  background: var(--forest);
  color: var(--mist);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--straw);
}
.section--dark p { color: var(--mist); }
.section--straw {
  background: var(--straw);
}
.section--mist {
  background: var(--mist);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(26,58,42,0.97);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.nav__logo-mark {
  width: 32px; height: 32px;
  background: var(--wheat);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--straw);
  line-height: 1.2;
}
.nav__logo-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--sage);
  font-style: italic;
  letter-spacing: 0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav__links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--mist);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--trans);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.06);
}
.nav__cta {
  background: var(--wheat) !important;
  color: var(--forest) !important;
  padding: 0.45rem 1.1rem !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
}
.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--forest) !important;
}

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--straw);
  border-radius: 2px;
  transition: all var(--trans);
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--forest);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  z-index: 999;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  color: var(--mist);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1.05rem;
}
.nav__mobile a:last-child { border-bottom: none; }
.page-body { padding-top: var(--nav-h); }

/* ---- Hero ---- */
.hero {
  background-color: var(--forest);
    background-image: url('../images/hero-harvest-vbpv.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(15,35,20,0.70) 0%, rgba(15,35,20,0.50) 55%, rgba(15,35,20,0.25) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--wheat), transparent);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.45);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero h1 {
  color: var(--straw);
  margin-bottom: 1.25rem;
  font-weight: 900;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--mist);
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 780px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(2px);
}
.hero__stat {
  border-left: 3px solid rgba(255,255,255,0.5);
  padding-left: 1rem;
}
.hero__stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  line-height: 1.35;
}
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--wheat);
  color: var(--forest);
}
.btn--primary:hover {
  background: var(--gold);
  color: var(--forest);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
/* btn--primary on hero background needs white text */
.hero .btn--primary {
  background: rgba(0,0,0,0.45);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.85);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  font-weight: 700;
}
.hero .btn--primary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--wheat);
  color: var(--wheat);
}
.btn--outline {
  background: rgba(0,0,0,0.45);
  color: #ffffff !important;
  border: 2px solid #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  font-weight: 700;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--wheat);
  color: var(--gold) !important;
}
.btn--green {
  background: var(--fern);
  color: var(--straw);
}
.btn--green:hover {
  background: var(--forest);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ---- Urgency Banner ---- */
.urgency {
  background: linear-gradient(135deg, #7a2020 0%, #5a1515 100%);
  border-bottom: 2px solid #c04040;
  padding: 1.25rem 0;
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 40px
  );
}
.urgency__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.urgency__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.urgency__text { flex: 1; }
.urgency__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.urgency__body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin: 0;
}
.urgency__body strong { color: #fff; font-weight: 600; }
.urgency__progress {
  margin-top: 0.75rem;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
  max-width: 360px;
}
.urgency__progress-bar {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, #e05050, #ff7070);
  border-radius: 3px;
}
.urgency__metrics {
  display: flex;
  gap: 2rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.urgency__metric {
  text-align: center;
}
.urgency__metric-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.urgency__metric-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
  margin-top: 0.2rem;
}

/* ---- Section headers ---- */
.section-header {
  margin-bottom: 3.5rem;
}
.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.75rem;
}
.section-label--light { color: var(--sage); }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  font-size: 1.08rem;
  color: var(--graphite);
  line-height: 1.68;
  margin: 0;
}
.section--dark .section-header p { color: var(--mist); }

/* ---- Stat cards ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--trans);
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}
.stat-card--dark {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.stat-card--dark:hover {
  background: rgba(255,255,255,0.1);
}
.stat-card__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--fern);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-card--dark .stat-card__num { color: var(--gold); }
.stat-card__label {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.4;
}
.stat-card--dark .stat-card__label { color: var(--sage); }
.stat-card__source {
  font-size: 0.72rem;
  color: var(--sage);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ---- Feature cards ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--trans);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--wheat);
  opacity: 0;
  transition: opacity var(--trans);
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.92rem; color: var(--graphite); margin: 0; line-height: 1.6; }

/* ---- Comparison table ---- */
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rule);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
}
.comparison-table thead {
  background: var(--forest);
}
.comparison-table thead th {
  padding: 1.1rem 1.25rem;
  text-align: left;
  color: var(--straw);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.comparison-table thead th:last-child { border-right: none; }
.comparison-table thead th.vbpv { color: var(--gold); }
.comparison-table tbody tr {
  border-bottom: 1px solid var(--rule);
  transition: background var(--trans);
}
.comparison-table tbody tr:hover { background: var(--straw); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table td {
  padding: 0.9rem 1.25rem;
  vertical-align: top;
  border-right: 1px solid var(--rule);
  line-height: 1.5;
}
.comparison-table td:last-child { border-right: none; }
.comparison-table td:first-child {
  font-weight: 600;
  color: var(--graphite);
  width: 28%;
  background: rgba(212,228,216,0.2);
}
.comparison-table td.vbpv { color: var(--fern); font-weight: 600; }
.comparison-table td.saving { color: var(--fern); font-style: italic; font-size: 0.85rem; }
.badge-win {
  display: inline-block;
  background: var(--mist);
  color: var(--fern);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ---- Callout / quote box ---- */
.callout {
  background: var(--straw);
  border-left: 5px solid var(--wheat);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}
.callout--green {
  background: var(--mist);
  border-left-color: var(--fern);
}
.callout--red {
  background: #fdeaea;
  border-left-color: #c04040;
}
.callout p { margin: 0; font-size: 1.05rem; line-height: 1.65; }
.callout strong { font-size: 1.08rem; }

/* ---- Steps / Timeline ---- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  position: relative;
}
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 27px; top: 56px; bottom: 0;
  width: 2px;
  background: var(--rule);
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step__body {
  padding-bottom: 2.5rem;
}
.step__body h3 { margin-bottom: 0.5rem; }
.step__body p { font-size: 0.95rem; color: var(--graphite); margin: 0; }

/* ---- Citation box ---- */
.citation {
  background: var(--mist);
  border: 1px solid var(--sage);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.citation__label {
  font-size: 0.72rem;
  font-style: italic;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.citation p {
  font-size: 0.88rem;
  color: var(--graphite);
  margin: 0;
  line-height: 1.6;
}
.citation a { color: var(--fern); font-weight: 600; }

/* ---- Data notice ---- */
.data-notice {
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
  font-size: 0.82rem;
  color: var(--graphite);
  font-style: italic;
  margin: 1rem 0 2rem;
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background-color: var(--forest);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero--has-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(15,35,20,0.72) 0%, rgba(15,35,20,0.55) 60%, rgba(15,35,20,0.35) 100%);
  pointer-events: none;
}
.page-hero--has-image .container { position: relative; z-index: 1; }
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--wheat), transparent);
}
.page-hero__label {
  display: inline-block;
  font-size: 0.78rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  color: var(--straw);
  margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero__lead {
  font-size: 1.1rem;
  color: var(--mist);
  max-width: 680px;
  line-height: 1.65;
  margin: 0;
}

/* ---- Sources list ---- */
.source-entry {
  border-bottom: 1px solid var(--rule);
  padding: 1.75rem 0;
}
.source-entry:last-child { border-bottom: none; }
.source-entry__tag {
  display: inline-block;
  background: var(--mist);
  color: var(--fern);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}
.source-entry__tag--gov { background: #e8f0ff; color: #3050a0; }
.source-entry h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.source-entry p { font-size: 0.9rem; color: var(--graphite); line-height: 1.6; }
.source-entry .doi { font-size: 0.82rem; color: var(--stone); font-style: italic; }
.source-entry .findings {
  margin-top: 0.75rem;
  background: var(--straw);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}
.source-entry .findings li {
  font-size: 0.88rem;
  color: var(--graphite);
  margin-left: 1.2rem;
  margin-bottom: 0.25rem;
}

/* ---- Contact form ---- */
.contact-form {
  max-width: 620px;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color var(--trans);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--fern);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-hint {
  font-size: 0.78rem;
  color: var(--stone);
  font-style: italic;
  margin-top: 0.35rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--ink);
  color: var(--stone);
  padding: 3.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--straw);
  margin-bottom: 0.75rem;
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--stone);
  margin-bottom: 1rem;
}
.footer__contact a {
  display: block;
  font-size: 0.85rem;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.footer__contact a:hover { color: var(--gold); }
.footer__col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--straw);
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.5rem; }
.footer__col ul a {
  font-size: 0.88rem;
  color: var(--stone);
  transition: color var(--trans);
}
.footer__col ul a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--stone);
  margin: 0;
}
.footer__bottom a { color: var(--sage); }
.footer__bottom a:hover { color: var(--gold); }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  animation: fadeUp 0.6s ease both;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero { padding: 4.5rem 0 4rem; }
  .section { padding: 3.5rem 0; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .container { padding: 0 1.25rem; }
  .urgency__inner { flex-direction: column; gap: 0.75rem; }
}
@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* ---- Site figures / images ---- */
.site-figure {
  margin: 2.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.site-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.site-figure figcaption {
  background: var(--forest);
  color: var(--mist);
  font-size: 0.82rem;
  padding: 0.75rem 1.25rem;
  font-style: italic;
  line-height: 1.5;
  border-top: 1px solid rgba(200,168,75,0.2);
}
.wildlife-diagram {
  max-width: 480px;
  margin: 2rem auto;
}
