/* ============================================================
   Americify — assets/css/styles.css
   El Paisajismo Americano: Una Exploración de la Estética Natural
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* ---- Variables ---- */
:root {
  --deep-green: #1a3a2f;
  --accent-green: #2d6a4f;
  --hover-green: #1b4332;
  --light-green: #52b788;
  --ivory: #f5f0e8;
  --warm-bg: #faf7f2;
  --mineral-blue: #2c4a6b;
  --ink-gray: #3d3d3d;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --border: #e5e0d5;
  --white: #ffffff;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --card-radius: 12px;
  --max-width: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Base ---- */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background-color: var(--warm-bg);
  line-height: 1.6;
  font-size: 16px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.05rem; }

p {
  font-weight: 400;
  line-height: 1.7;
  max-width: 700px;
  color: var(--ink-gray);
}

a { color: var(--accent-green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--accent-green);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: background 0.22s ease, transform 0.15s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn:hover {
  background: var(--hover-green);
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---- Header / Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--deep-green);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--light-green); }
.nav-logo:hover { text-decoration: none; }

.nav-menu {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-menu a {
  color: rgba(245, 240, 232, 0.82);
  font-weight: 400;
  font-size: 0.87rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--light-green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 58, 47, 0.85) 0%, rgba(44, 74, 107, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  color: var(--white);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-green);
  font-weight: 400;
  margin-bottom: 18px;
  border: 1px solid rgba(82, 183, 136, 0.4);
  padding: 5px 14px;
  border-radius: 20px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 18px;
  max-width: 780px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
  max-width: 640px;
  font-weight: 300;
}

.hero-content > p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Section Label / Title ---- */
.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  color: var(--deep-green);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--ink-gray);
  margin-bottom: 48px;
}

/* ---- Cards Grid ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 32px 28px;
  transition: transform 0.22s, box-shadow 0.22s;
  border: 1px solid rgba(229, 224, 213, 0.5);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
}

.card-icon { font-size: 2.2rem; margin-bottom: 18px; }
.card h3 { font-size: 1.08rem; color: var(--deep-green); margin-bottom: 12px; max-width: none; }
.card p { font-size: 0.9rem; color: var(--ink-gray); margin: 0; max-width: none; }

/* ---- Feature Block (image + text) ---- */
.feature-section { background: var(--warm-bg); }
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.feature-img {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}

.feature-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.feature-text h2 { color: var(--deep-green); margin-bottom: 20px; max-width: none; }
.feature-text p { margin-bottom: 18px; }
.feature-text p:last-of-type { margin-bottom: 28px; }

/* ---- Main Explanation Block ---- */
.explanation-section { background: var(--ivory); }
.explanation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.explanation-inner h2 { color: var(--deep-green); margin-bottom: 24px; max-width: none; }
.explanation-inner p { margin-bottom: 16px; }
.explanation-right {
  padding-top: 12px;
}
.pull-quote {
  border-left: 4px solid var(--accent-green);
  padding: 20px 28px;
  background: var(--white);
  border-radius: 0 10px 10px 0;
  margin-bottom: 28px;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--mineral-blue);
  font-weight: 400;
  line-height: 1.7;
}
.pull-quote p { max-width: none; color: var(--mineral-blue); }
.pull-quote cite { display: block; font-size: 0.8rem; margin-top: 10px; color: var(--text-muted); font-style: normal; letter-spacing: 0.05em; }

/* ---- Stats ---- */
.stats-section { background: var(--deep-green); padding: 72px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--light-green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.88rem; color: rgba(245, 240, 232, 0.8); font-weight: 400; }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--mineral-blue) 100%);
  padding: 88px 24px;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; max-width: none; }
.cta-section p { color: rgba(255, 255, 255, 0.82); margin: 0 auto 36px; max-width: 580px; }

/* ---- Breadcrumbs ---- */
.breadcrumbs-bar { background: var(--ivory); border-bottom: 1px solid var(--border); padding: 12px 0; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}
.breadcrumbs a { color: var(--accent-green); }
.breadcrumbs .sep { color: var(--border); margin: 0 2px; }
.breadcrumbs .current { color: var(--ink-gray); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--deep-green);
  padding: 64px 24px 56px;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 { color: var(--ivory); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.page-hero .page-subtitle {
  color: rgba(245, 240, 232, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
  font-weight: 300;
}

/* ---- Content Layout ---- */
.content-section { padding: 64px 0 80px; }

/* ---- Blog Cards ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  border: 1px solid rgba(229, 224, 213, 0.4);
  transition: transform 0.22s, box-shadow 0.22s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12); }

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card-body { padding: 26px; }
.blog-card-meta { font-size: 0.79rem; color: var(--text-muted); margin-bottom: 12px; font-weight: 400; }
.blog-card-body h3 {
  font-size: 1.1rem;
  color: var(--deep-green);
  margin-bottom: 12px;
  line-height: 1.35;
  max-width: none;
}
.blog-card-body p { font-size: 0.9rem; color: var(--ink-gray); margin-bottom: 20px; max-width: none; line-height: 1.6; }

/* ---- Article ---- */
.article-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.article-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--card-radius);
  margin-bottom: 40px;
}

.article-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 400;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.article-body h2 {
  font-size: 1.55rem;
  color: var(--deep-green);
  margin: 48px 0 18px;
  max-width: none;
}
.article-body h3 {
  font-size: 1.2rem;
  color: var(--mineral-blue);
  margin: 32px 0 14px;
  max-width: none;
}
.article-body p { margin-bottom: 22px; max-width: none; }
.article-body blockquote {
  border-left: 4px solid var(--accent-green);
  padding: 18px 28px;
  margin: 36px 0;
  background: var(--ivory);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mineral-blue);
  font-weight: 400;
}
.article-body blockquote p { color: var(--mineral-blue); max-width: none; margin: 0; }
.article-body blockquote cite { display: block; font-size: 0.78rem; margin-top: 10px; font-style: normal; color: var(--text-muted); letter-spacing: 0.04em; }

.article-related {
  background: var(--ivory);
  border-radius: var(--card-radius);
  padding: 32px;
  margin-top: 56px;
  border: 1px solid var(--border);
}
.article-related h3 { color: var(--deep-green); margin-bottom: 16px; max-width: none; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.article-related-links { display: flex; flex-direction: column; gap: 10px; }
.article-related-links a { color: var(--accent-green); font-size: 0.92rem; font-weight: 400; }

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 44px; margin-top: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-green), var(--mineral-blue));
}
.timeline-item { position: relative; margin-bottom: 44px; }
.timeline-dot {
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent-green);
}
.timeline-year {
  font-size: 0.76rem;
  color: var(--accent-green);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-item h4 { color: var(--deep-green); margin-bottom: 8px; max-width: none; }
.timeline-item p { font-size: 0.9rem; margin: 0; max-width: none; }

/* ---- Resources ---- */
.resource-block { margin-bottom: 72px; }
.resource-block:last-child { margin-bottom: 0; }
.resource-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.resource-block-icon { font-size: 1.8rem; }
.resource-block h3 { color: var(--deep-green); font-size: 1.35rem; max-width: none; margin: 0; }
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.resource-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 28px;
  border: 1px solid rgba(229, 224, 213, 0.5);
}
.resource-card h4 { color: var(--deep-green); margin-bottom: 10px; max-width: none; }
.resource-card p { font-size: 0.9rem; margin-bottom: 20px; max-width: none; }

/* ---- FAQ Accordion ---- */
.faq-container { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-green); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-green);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding-bottom: 22px;
  color: var(--ink-gray);
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: none;
}
.faq-answer-inner a { color: var(--accent-green); }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.contact-info-block h3 { color: var(--deep-green); margin-bottom: 24px; font-size: 1.2rem; max-width: none; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-detail .ci-icon { font-size: 1.3rem; margin-top: 1px; flex-shrink: 0; }
.contact-detail-text { font-size: 0.92rem; color: var(--ink-gray); }
.contact-detail-text strong { display: block; color: var(--deep-green); font-weight: 600; margin-bottom: 3px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-detail-text a { color: var(--accent-green); font-weight: 400; }

.contact-map { margin-top: 32px; border-radius: var(--card-radius); overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; height: 260px; border: none; display: block; }
.map-link { display: inline-block; margin-top: 10px; font-size: 0.84rem; color: var(--accent-green); }

/* ---- Form ---- */
.form-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 40px;
  border: 1px solid rgba(229, 224, 213, 0.5);
}
.form-title { color: var(--deep-green); margin-bottom: 28px; font-size: 1.3rem; max-width: none; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--warm-bg);
  transition: border-color 0.22s;
  font-weight: 300;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-green);
  background: var(--white);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.87rem;
  color: var(--ink-gray);
  font-weight: 400;
  line-height: 1.5;
}
.form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: auto; cursor: pointer; }
.form-check a { color: var(--accent-green); }
.form-message {
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 400;
  display: none;
}
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.form-message.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ---- Content Pages (privacy, terms) ---- */
.prose-content { max-width: 800px; padding: 64px 24px 80px; }
.prose-content h2 { color: var(--deep-green); font-size: 1.4rem; margin: 40px 0 14px; max-width: none; }
.prose-content h3 { color: var(--mineral-blue); font-size: 1.1rem; margin: 28px 0 10px; max-width: none; }
.prose-content p { margin-bottom: 18px; }
.prose-content ul, .prose-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.prose-content li { margin-bottom: 8px; color: var(--ink-gray); font-weight: 400; line-height: 1.6; }
.prose-content a { color: var(--accent-green); }

/* ---- About page ---- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-intro-img { border-radius: var(--card-radius); overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.14); }
.about-intro-img img { width: 100%; height: 460px; object-fit: cover; }
.about-intro-text h2 { color: var(--deep-green); margin-bottom: 20px; max-width: none; }
.about-intro-text p { margin-bottom: 16px; }

.mission-block {
  background: var(--deep-green);
  border-radius: var(--card-radius);
  padding: 48px;
  color: var(--ivory);
  margin: 56px 0;
}
.mission-block h3 { color: var(--light-green); margin-bottom: 16px; max-width: none; }
.mission-block p { color: rgba(245, 240, 232, 0.88); max-width: none; }

/* ---- Footer ---- */
.site-footer { background: var(--deep-green); color: rgba(245, 240, 232, 0.8); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand-logo { font-size: 1.4rem; font-weight: 600; color: var(--ivory); margin-bottom: 14px; }
.footer-brand-logo span { color: var(--light-green); }
.footer-brand p { font-size: 0.86rem; max-width: 280px; line-height: 1.7; margin: 0; color: rgba(245, 240, 232, 0.72); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.22s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--accent-green); }
.footer-col h4 {
  color: var(--ivory);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.9;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(245, 240, 232, 0.72);
  font-size: 0.87rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--light-green); }
.footer-col .contact-item { font-size: 0.87rem; color: rgba(245, 240, 232, 0.72); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.81rem;
  color: rgba(245, 240, 232, 0.55);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 58, 47, 0.97);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  z-index: 1000;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
  flex-wrap: wrap;
  border-top: 1px solid rgba(82, 183, 136, 0.3);
}
.cookie-banner.hidden { display: none; }
.cookie-text { font-size: 0.87rem; line-height: 1.6; max-width: 680px; }
.cookie-text a { color: var(--light-green); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 22px;
  border-radius: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.cookie-btn.accept { background: var(--accent-green); color: var(--white); }
.cookie-btn.accept:hover { background: var(--hover-green); }
.cookie-btn.decline { background: transparent; color: var(--ivory); border: 1px solid rgba(255, 255, 255, 0.28); }
.cookie-btn.decline:hover { background: rgba(255, 255, 255, 0.08); }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.bg-ivory { background: var(--ivory); }
.bg-white { background: var(--white); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .explanation-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 52px 0; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--deep-green);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    z-index: 200;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .nav-menu a { display: block; padding: 14px 0; font-size: 0.92rem; }
  .nav-toggle { display: flex; }

  .hero { min-height: 85vh; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; text-align: center; }

  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .feature-img img { height: 300px; }
  .article-img { height: 260px; }
  .about-intro-img img { height: 300px; }

  .resource-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }

  .mission-block { padding: 32px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container { padding: 0 16px; }
  .hero-content { padding: 60px 16px; }
  .page-hero { padding: 48px 16px 40px; }
}
