:root {
  --leaf: #287447;
  --deep: #163326;
  --mint: #e7f4ec;
  --gold: #c8943b;
  --ink: #1f2924;
  --muted: #68756d;
  --paper: #fbfcf8;
  --line: #dce6de;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(22, 51, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: multiply;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-nav a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.top-nav a {
  color: var(--deep);
}

.top-nav a:hover {
  background: var(--mint);
}

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px) 44px;
  background:
    linear-gradient(90deg, rgba(22, 51, 38, 0.88), rgba(22, 51, 38, 0.54)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Industrialhemp.jpg/1280px-Industrialhemp.jpg") center/cover;
  color: var(--white);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2.3rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 720px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button.primary {
  background: var(--gold);
  color: #20190b;
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel strong {
  margin: 6px 0 10px;
  font-size: 1.6rem;
  line-height: 1.15;
}

.search-band {
  display: grid;
  grid-template-columns: 160px minmax(220px, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.search-band label {
  font-weight: 800;
}

.search-band input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
}

.status {
  color: var(--muted);
  font-size: 0.86rem;
}

.layout {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 72px) 56px;
}

.section-heading h2 {
  margin: 0 0 18px;
  color: var(--deep);
  font-size: 1.9rem;
}

.article-grid {
  display: grid;
  gap: 12px;
}

.article-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.article-card:hover,
.article-card.active {
  border-color: rgba(40, 116, 71, 0.55);
  box-shadow: 0 12px 30px rgba(22, 51, 38, 0.09);
}

.article-card img {
  width: 96px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: var(--mint);
}

.article-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
}

.article-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.article-view {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.article-hero {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  display: block;
  background: var(--mint);
}

.article-body {
  padding: clamp(22px, 4vw, 48px);
}

.article-body h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  color: var(--deep);
  line-height: 1.08;
  letter-spacing: 0;
}

.article-meta {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.article-body h3 {
  color: var(--deep);
  margin-top: 28px;
}

.promo {
  margin-top: 34px;
  padding: 24px;
  border-radius: 8px;
  background: var(--mint);
  border: 1px solid #c9dfd0;
}

.promo h3 {
  margin-top: 0;
}

.promo a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--deep);
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header,
  .search-band,
  .layout,
  .hero {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    align-items: flex-start;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .status {
    min-height: 20px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .top-nav a {
    padding: 8px 10px;
    min-height: 38px;
    font-size: 0.85rem;
  }

  .article-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .article-card img {
    width: 82px;
  }
}
