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

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

:root {
  --green-dark: #1a3a2a;
  --green-mid: #2a443f;
  --green-light: #a5d9cd;
  --green-lime: #A7C13E;
  --green-lime-dark: #94A92C;
  --gold: #ffd97e;
  --yellow: #FFFAC7;
  --cream: #f9f7f2;
  --dark: #1a1a1a;
  --gray: #666;
  --light-gray: #e8e6e1;
  --white: #fff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-gray);
  padding: 0.6rem 0;
}
.nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a { font-weight: 600; font-size: 0.85rem; color: var(--dark); transition: color 0.2s; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links a:hover { color: var(--green-lime); }
.nav-donate {
  background: var(--green-lime); color: var(--white) !important; padding: 0.5rem 1.4rem;
  font-weight: 700; border-radius: 4px; transition: background 0.2s;
}
.nav-donate:hover { background: var(--green-lime-dark); }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); transition: 0.3s; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 0; right: 0; width: 80%; height: 100vh;
    background: var(--white); flex-direction: column; padding: 5rem 2rem 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1); gap: 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  padding: 8rem 0 5rem; color: var(--white); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.4);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 800px; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.05; margin-bottom: 0.5rem; }
.hero-sub { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 300; opacity: 0.85; margin-bottom: 2rem; }
.hero-cta {
  display: inline-block; background: var(--green-lime); color: var(--dark); padding: 0.8rem 1.6rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; border-radius: 4px;
  transition: background 0.2s; margin-bottom: 2rem;
}
.hero-cta:hover { background: var(--green-lime-dark); }
.hero-cta strong { font-weight: 800; }
.hero-intro { max-width: 600px; }
.hero-intro p { font-size: 1rem; line-height: 1.7; margin-bottom: 0.5rem; opacity: 0.9; }

/* ─── VISION ─── */
.vision {
  background: var(--cream); padding: 4rem 0; text-align: center;
  border-bottom: 1px solid var(--light-gray);
}
.vision .section-label { color: var(--green-lime); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.vision-text { font-size: 1.15rem; max-width: 800px; margin: 0 auto; color: var(--gray); line-height: 1.8; }

/* ─── SECTIONS ─── */
.section { padding: 5rem 0; }
.section-label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-lime); margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.section-title em { color: var(--green-lime); font-style: normal; }
.section-desc { font-size: 1.05rem; color: var(--gray); max-width: 750px; line-height: 1.7; }
.section-intro { font-size: 1.1rem; font-weight: 600; color: var(--gray); margin-bottom: 1.5rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 0.8rem 1.8rem;
  font-weight: 600; font-size: 1rem; border-radius: 4px; transition: all 0.2s;
  cursor: pointer; border: none; font-family: var(--font); text-align: center;
}
.btn-primary { background: var(--green-lime); color: var(--dark); }
.btn-primary:hover { background: var(--green-lime-dark); transform: translateY(-1px); }
.btn-outline-dark {
  background: transparent; border: 2px solid var(--dark); color: var(--dark);
  padding: 0.6rem 1.4rem; font-size: 0.85rem; line-height: 1.4;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-outline-dark small { font-weight: 400; font-size: 0.75rem; }

/* ─── VIDEO GRID ─── */
.videos { background: var(--white); padding: 4rem 0; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.video-card {
  position: relative; display: block; border-radius: 8px; overflow: hidden;
  transition: transform 0.2s; text-align: center; color: var(--dark);
}
.video-card:hover { transform: translateY(-3px); }
.video-card img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.video-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 2rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.3s;
}
.video-card:hover .video-overlay { opacity: 1; }
.play-icon { font-size: 2.5rem; color: var(--white); }
.video-card p { font-weight: 700; font-size: 0.9rem; padding: 0.75rem 0.5rem; text-transform: uppercase; letter-spacing: 0.03em; }
@media (max-width: 768px) { .video-grid { grid-template-columns: 1fr; } }

/* ─── MARKETS ─── */
.markets { background: var(--white); }
.benefits-list { margin: 2rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.benefit-item { font-size: 0.95rem; padding: 0.5rem 0; color: var(--gray); }
.benefit-item strong { color: var(--dark); }
.hemp-tagline { font-size: 1.2rem; font-weight: 700; color: var(--green-dark); margin: 2rem 0 2.5rem; }
.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.market-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  border: 1px solid var(--light-gray); transition: transform 0.2s, box-shadow 0.2s;
}
.market-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.market-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.market-card-body { padding: 1.2rem; }
.market-card h3 { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; color: var(--green-dark); }
.market-card ul { list-style: none; }
.market-card li { font-size: 0.85rem; color: var(--gray); padding: 0.15rem 0; }
.market-card li::before { content: "·"; margin-right: 0.5rem; color: var(--green-lime); font-weight: 700; }
@media (max-width: 768px) {
  .markets-grid { grid-template-columns: 1fr; }
  .benefits-list { grid-template-columns: 1fr; }
}

/* ─── HEMP TRUTHS ─── */
.truths { background: var(--cream); }
.truths-title {
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; line-height: 1;
  margin-bottom: 1rem; color: var(--green-dark);
}
.truths-intro { font-size: 1.1rem; color: var(--gray); max-width: 600px; margin-bottom: 2rem; line-height: 1.7; }
.faq-list { max-width: 700px; }
.faq-item {
  border: 1px solid var(--light-gray); border-radius: 6px; margin-bottom: 0.75rem;
  background: var(--white); overflow: hidden;
}
.faq-item summary {
  padding: 1.2rem 1.5rem; font-weight: 700; font-size: 1.05rem; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--green-lime); font-weight: 300; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 1.5rem 1.2rem; color: var(--gray); line-height: 1.7; }

/* ─── PARTNERSHIPS ─── */
.partnerships { background: var(--white); padding: 3rem 0; }
.sponsors-strip { margin-top: 1.5rem; }
.sponsors-strip img { width: 100%; max-width: 900px; margin: 0 auto; }

/* ─── EXPERTS ─── */
.experts { background: var(--cream); }
.experts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.expert-card {
  background: var(--white); padding: 2rem; border-radius: 8px;
  border: 1px solid var(--light-gray); text-align: center;
}
.expert-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--green-dark); }
.expert-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; margin-bottom: 1.5rem; }
@media (max-width: 768px) { .experts-grid { grid-template-columns: 1fr; } }

/* ─── EVENTS ─── */
.events { background: var(--white); }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.event-card {
  display: block; border-radius: 8px; overflow: hidden; background: var(--white);
  border: 1px solid var(--light-gray); transition: transform 0.2s, box-shadow 0.2s;
}
.event-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.event-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.event-meta { padding: 0.75rem 1.2rem 0; display: flex; gap: 0.75rem; align-items: center; }
.event-date { font-size: 0.75rem; font-weight: 700; color: var(--green-lime); text-transform: uppercase; letter-spacing: 0.05em; }
.event-tags { font-size: 0.7rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }
.event-card h3 { padding: 0.5rem 1.2rem 1.2rem; font-size: 1rem; font-weight: 700; line-height: 1.4; }
@media (max-width: 768px) { .events-grid { grid-template-columns: 1fr; } }

/* ─── CONTACT ─── */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
.contact h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--green-dark); }
.contact p { color: var(--gray); margin-bottom: 1.5rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* Forms */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
input, textarea, select {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--light-gray);
  border-radius: 4px; font-family: var(--font); font-size: 0.95rem;
  background: var(--white); margin-bottom: 0.75rem; transition: border-color 0.2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--green-lime); }
textarea { resize: vertical; min-height: 120px; }
.form-status { margin-top: 0.75rem; font-weight: 500; font-size: 0.9rem; }
.form-status.success { color: var(--green-mid); }
.form-status.error { color: #c0392b; }

/* Newsletter card */
.newsletter-card {
  background: var(--white); padding: 2rem; border-radius: 8px;
  border: 1px solid var(--light-gray);
}
.contact-info { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--light-gray); }
.contact-info a { color: var(--green-mid); text-decoration: underline; }

/* ─── FOOTER ─── */
.footer { background: var(--dark); color: #999; padding: 4rem 0 2rem; }
.footer-main { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand img { height: 48px; width: auto; margin-bottom: 1rem; filter: brightness(10); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer a { color: #999; transition: color 0.2s; display: block; margin-bottom: 0.4rem; font-size: 0.9rem; }
.footer a:hover { color: var(--green-lime); }

.news-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.news-item img { width: 56px; height: 42px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.news-date { display: block; font-size: 0.7rem; color: var(--green-lime); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 0.1rem; }
.news-title { display: block; font-size: 0.8rem; line-height: 1.3; color: #ccc; }

.footer-copy {
  text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── ARTICLES / BLOG ─── */
.articles { background: var(--cream); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.article-card {
  display: block; border-radius: 8px; overflow: hidden; background: var(--white);
  border: 1px solid var(--light-gray); transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.article-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-card-body { padding: 1.2rem; }
.article-card-body .article-date { font-size: 0.7rem; font-weight: 700; color: var(--green-lime); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; display: block; }
.article-card-body .article-tags { font-size: 0.65rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; display: block; }
.article-card-body h3 { font-size: 0.95rem; font-weight: 700; line-height: 1.4; color: var(--dark); }
.article-card-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; margin-top: 0.5rem; }
.articles .view-all { text-align: center; margin-top: 2rem; }
@media (max-width: 768px) { .articles-grid { grid-template-columns: 1fr; } }

/* ─── ARTICLE PAGE ─── */
.article-page { padding-top: 6rem; }
.article-header {
  position: relative; min-height: 40vh; display: flex; align-items: flex-end;
  padding: 4rem 0 3rem; color: var(--white); overflow: hidden;
}
.article-header-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.35);
}
.article-header .container { position: relative; z-index: 1; }
.article-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2; max-width: 800px; }
.article-header .article-meta { margin-top: 1rem; font-size: 0.85rem; opacity: 0.8; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.article-body { padding: 3rem 0 5rem; }
.article-body .container { max-width: 800px; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--green-dark); margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin: 2rem 0 0.75rem; }
.article-body p { font-size: 1.05rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.2rem; }
.article-body blockquote {
  border-left: 4px solid var(--green-lime); margin: 2rem 0; padding: 1rem 1.5rem;
  background: var(--cream); font-style: italic; color: var(--dark);
}
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; color: var(--gray); }
.article-body li { font-size: 1rem; line-height: 1.7; margin-bottom: 0.5rem; }
.article-body img { width: 100%; border-radius: 8px; margin: 2rem 0; }
.article-body strong { color: var(--dark); }
.article-nav { display: flex; justify-content: space-between; align-items: center; padding-top: 3rem; border-top: 1px solid var(--light-gray); margin-top: 3rem; }
.article-nav a { color: var(--green-mid); font-weight: 600; font-size: 0.95rem; }
.article-nav a:hover { color: var(--green-lime); }
.article-body .article-download {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-lime); color: var(--dark); padding: 0.8rem 1.6rem;
  font-weight: 600; border-radius: 4px; margin: 1rem 0 2rem; transition: background 0.2s;
}
.article-body .article-download:hover { background: var(--green-lime-dark); }

/* Donate page */
.donate-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.donate-benefit { text-align: center; padding: 2rem; }
.donate-benefit h3 { color: var(--green-dark); margin-bottom: 1rem; font-size: 1.2rem; }
.donate-benefit p { color: var(--text-secondary); line-height: 1.6; }
.donate-form-wrap { max-width: 560px; margin: 2rem auto 0; text-align: center; }
.donate-amounts { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1.5rem; }
.donate-amt {
  padding: 0.8rem 1.6rem; border: 2px solid var(--green-mid); border-radius: 4px;
  background: transparent; color: var(--green-mid); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.donate-amt:hover { background: var(--green-light); border-color: var(--green-mid); }
.donate-amt.active { background: var(--green-mid); color: #fff; border-color: var(--green-mid); }
.donate-custom { margin-bottom: 1.5rem; }
.donate-custom label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--dark); }
.donate-custom input {
  width: 200px; padding: 0.8rem; border: 2px solid var(--light-gray); border-radius: 4px;
  font-size: 1.1rem; text-align: center;
}
.donate-custom input:focus { border-color: var(--green-mid); outline: none; }
.donate-submit { margin: 1.5rem auto; display: block; font-size: 1.1rem; padding: 1rem 3rem; }
.donate-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.donate-disclaimer { font-size: 0.85rem; color: var(--text-secondary); margin-top: 1rem; }
.donate-note { max-width: 600px; margin: 3rem auto 0; text-align: center; padding-top: 2rem; border-top: 1px solid var(--light-gray); }
.donate-note h3 { color: var(--green-dark); margin-bottom: 1rem; }
.donate-note p { color: var(--text-secondary); line-height: 1.7; }
.donate-note a { color: var(--green-mid); font-weight: 600; }
@media (max-width: 768px) {
  .donate-benefits { grid-template-columns: 1fr; gap: 1rem; }
  .donate-benefit { padding: 1rem; }
}
