:root {
  --ink: #17221b;
  --forest: #193c2a;
  --forest-dark: #0f291c;
  --moss: #56785e;
  --sage: #dbe6d8;
  --cream: #f4efe3;
  --paper: #fffdf7;
  --gold: #d7a84b;
  --clay: #a85d3f;
  --muted: #677268;
  --line: rgba(23, 34, 27, 0.15);
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 70px rgba(15, 41, 28, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--forest);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.notice-bar {
  color: #fff;
  background: var(--forest-dark);
  font-size: 0.75rem;
}
.notice-bar__inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.notice-bar a {
  color: #d8b464;
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 34, 27, 0.08);
  background: rgba(255, 253, 247, 0.95);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.brand__name {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.045em;
}
.brand__name span { color: var(--moss); }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}
.desktop-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}
.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: 82px 0 auto;
  max-height: calc(100vh - 82px);
  padding: 18px 20px 30px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.mobile-nav a {
  display: block;
  padding: 13px 5px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 600;
}
.mobile-nav .mobile-nav__agri {
  margin-top: 12px;
  color: var(--moss);
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 42%, rgba(215, 168, 75, 0.18), transparent 26%),
    var(--forest);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: repeating-linear-gradient(165deg, transparent 0 55px, rgba(255,255,255,0.08) 56px 57px);
  mask-image: linear-gradient(to right, transparent 20%, #000);
}
.hero__leaf {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 690px;
  height: 690px;
  opacity: 0.08;
  background: url("/images/hemp-leaf-watermark.png") center / contain no-repeat;
  transform: rotate(-12deg);
}
.hero-grid {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
  padding-block: 75px;
}
.hero-copy,
.hero-product { min-width: 0; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero .eyebrow,
.agriminds-card .eyebrow { color: #bcd0bf; }
.hero h1,
.section-heading h2,
.learn-intro h2,
.grow-copy h2,
.agriminds-card h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.hero h1 { font-size: clamp(4rem, 7vw, 6.6rem); }
.hero h1 em {
  color: #e0b85f;
  font-weight: 500;
}
.hero-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}
.hero-actions,
.grow-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--gold {
  color: var(--forest-dark);
  background: #ecc66f;
}
.button--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.32);
}
.button--dark {
  color: #fff;
  background: var(--forest);
}
.button--light {
  color: var(--forest);
  background: var(--paper);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 38px 0 0;
  padding: 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.72rem;
  list-style: none;
}
.hero-trust li {
  position: relative;
  padding-left: 15px;
}
.hero-trust li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8fc29c;
}

.hero-product {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.hero-product__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255,255,255,0.025), 0 0 0 130px rgba(255,255,255,0.018);
}
.hero-product > img {
  position: relative;
  z-index: 2;
  width: min(92%, 500px);
  height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 35px 35px rgba(0,0,0,0.34));
}
.hero-product__stamp {
  position: absolute;
  top: 12%;
  right: 0;
  z-index: 3;
  width: 108px;
  height: 108px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  color: rgba(255,255,255,0.72);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(9deg);
}
.hero-product__stamp i {
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: var(--gold);
}
.hero-product__note {
  position: absolute;
  right: 0;
  bottom: 5%;
  z-index: 4;
  width: 235px;
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: rgba(13, 38, 25, 0.82);
  backdrop-filter: blur(10px);
}
.hero-product__note span {
  color: #a9c7ae;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-product__note strong {
  display: block;
  margin: 5px 0 12px;
  font-family: "Fraunces", serif;
  font-size: 1.12rem;
  line-height: 1.2;
}
.hero-product__note a {
  color: #e7bd63;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 800;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-grid > div {
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-right: 1px solid var(--line);
}
.proof-grid > div:first-child { border-left: 1px solid var(--line); }
.proof-grid strong {
  color: var(--gold);
  font-family: "Fraunces", serif;
}
.proof-grid span {
  font-size: 0.78rem;
  font-weight: 700;
}

.products-section,
.learn-section,
.guides-section,
.agriminds-section { padding-block: 105px; }
.section-heading { margin-bottom: 42px; }
.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.section-heading h2,
.learn-intro h2,
.grow-copy h2,
.agriminds-card h2 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
}
.underlined-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
}

.products-section { background: var(--paper); }
.product-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 18px;
}
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-card__visual {
  position: relative;
  height: 340px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(255,255,255,0.9), transparent 34%),
    #e4eadf;
}
.product-card--oil .product-card__visual {
  height: 390px;
  background:
    radial-gradient(circle at 50% 58%, rgba(255,255,255,0.83), transparent 32%),
    #d8e3d5;
}
.product-card__visual--hash { background: #eee5d6; }
.product-card__visual img {
  width: 78%;
  height: 82%;
  object-fit: contain;
  transition: transform 450ms ease;
}
.product-card:hover img { transform: scale(1.045); }
.product-card__index {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  color: rgba(23,34,27,0.34);
  font-family: "Fraunces", serif;
}
.product-card__copy {
  min-height: 190px;
  padding: 25px;
}
.product-card__copy p {
  margin: 0;
  color: var(--moss);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.product-card__copy h3 {
  margin: 10px 0 27px;
  font-family: "Fraunces", serif;
  font-size: 1.65rem;
  line-height: 1.12;
}
.product-card__copy span {
  display: block;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 800;
}
.product-note {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.learn-section {
  color: #fff;
  background: var(--forest-dark);
}
.learn-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 135px);
}
.learn-intro {
  align-self: start;
  position: sticky;
  top: 135px;
}
.learn-intro .eyebrow { color: #a8c3ad; }
.learn-intro p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255,255,255,0.65);
}
.learn-intro .button { margin-top: 20px; background: #315c42; }
.learn-list { border-top: 1px solid rgba(255,255,255,0.14); }
.learn-list a {
  min-height: 130px;
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  text-decoration: none;
}
.learn-list > a > span {
  color: #91ad96;
  font-family: "Fraunces", serif;
}
.learn-list strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
}
.learn-list small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}
.learn-list i {
  color: var(--gold);
  font-style: normal;
  font-size: 1.2rem;
  transition: transform 180ms ease;
}
.learn-list a:hover i { transform: translateX(5px); }

.grow-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
  background: var(--cream);
}
.grow-image { min-height: 600px; overflow: hidden; }
.grow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.06);
}
.grow-copy {
  align-self: center;
  max-width: 690px;
  padding: clamp(50px, 8vw, 110px);
}
.grow-copy > p:not(.eyebrow) { color: var(--muted); }
.grow-steps {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.grow-steps span {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
}
.grow-steps b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--moss);
  border-radius: 50%;
  color: var(--moss);
  font-size: 0.67rem;
}
.grow-actions .button--gold { background: var(--gold); }

.guides-section { background: var(--paper); }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.guide-grid a {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: #fffefb;
  text-decoration: none;
}
.guide-grid span {
  color: var(--moss);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.guide-grid h3 {
  margin: 45px 0 15px;
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  line-height: 1.12;
}
.guide-grid p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 0.84rem;
}
.guide-grid i {
  margin-top: auto;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 800;
}

.agriminds-section {
  padding-top: 0;
  background: var(--paper);
}
.agriminds-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: clamp(38px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(100deg, rgba(14,41,28,0.98), rgba(25,60,42,0.92)),
    url("/images/hemp-field.png") center / cover;
}
.agriminds-card > div { max-width: 760px; }
.agriminds-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255,255,255,0.65);
}

.site-footer {
  padding-top: 75px;
  color: rgba(255,255,255,0.67);
  background: #101b15;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 0.7fr);
  gap: 45px;
  padding-bottom: 60px;
}
.brand--footer { color: #fff; }
.footer-brand p {
  max-width: 300px;
  font-size: 0.8rem;
}
.footer-grid h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-grid > div:not(.footer-brand) a {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,0.56);
  text-decoration: none;
  font-size: 0.78rem;
}
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.67rem;
}

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .menu-button { display: block; margin-left: 0; }
  .hero-grid { grid-template-columns: 1fr 0.75fr; gap: 25px; }
  .hero-product__note { right: -10px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card--oil .product-card__visual,
  .product-card__visual { height: 310px; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  :root { --shell: 680px; }
  body { overflow-x: hidden; }
  .shell {
    width: calc(100% - 28px);
    max-width: 680px;
  }
  .notice-bar__inner { justify-content: center; }
  .notice-bar__inner > span { display: none; }
  .header-cta { display: none; }
  .header-inner { min-height: 70px; }
  .mobile-nav { inset: 70px 0 auto; max-height: calc(100vh - 70px); }
  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 70px 35px;
  }
  .hero h1 { font-size: clamp(3.7rem, 15vw, 5.6rem); }
  .hero-product { min-height: 480px; }
  .hero-product > img { height: 430px; }
  .hero-product__stamp { right: 5%; }
  .hero-product__note { right: 3%; bottom: 0; }
  .products-section,
  .learn-section,
  .guides-section,
  .agriminds-section { padding-block: 75px; }
  .section-heading--split { display: block; }
  .section-heading--split .underlined-link { margin-top: 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card--oil .product-card__visual,
  .product-card__visual { height: 330px; }
  .learn-grid { grid-template-columns: 1fr; gap: 50px; }
  .learn-intro { position: static; }
  .grow-section { grid-template-columns: 1fr; }
  .grow-image { min-height: 440px; }
  .grow-copy { padding: 65px 28px; }
  .guide-grid { grid-template-columns: 1fr; }
  .agriminds-section { padding-top: 0; }
  .agriminds-card { display: block; }
  .agriminds-card .button { margin-top: 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .brand img { width: 40px; height: 40px; }
  .brand__name { font-size: 1.15rem; }
  .hero-actions,
  .grow-actions { align-items: stretch; flex-direction: column; }
  .hero-copy { overflow: hidden; }
  .hero-lede { max-width: 100%; overflow-wrap: anywhere; }
  .button { width: 100%; }
  .hero-trust {
    max-width: 100%;
    gap: 10px 14px;
    font-size: 0.65rem;
  }
  .hero-product { min-height: 390px; }
  .hero-product > img { height: 360px; }
  .hero-product__glow { width: 290px; height: 290px; }
  .hero-product__stamp { width: 83px; height: 83px; top: 8%; }
  .hero-product__note { right: 0; width: 200px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { min-height: 72px; border-left: 1px solid var(--line); }
  .section-heading h2,
  .learn-intro h2,
  .grow-copy h2,
  .agriminds-card h2 { font-size: 2.55rem; }
  .learn-list a { min-height: 115px; grid-template-columns: 35px 1fr auto; }
  .learn-list strong { font-size: 1.3rem; }
  .learn-list small { display: none; }
  .grow-image { min-height: 350px; }
  .footer-grid { gap: 35px 24px; }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
