/* ==========================================================================
   DUSORMIL SEEDS & CONSULT — v2
   Ontworpen als premium single-page website voor FTP-hosting
   ========================================================================== */

/* ------------------------------------------------------------------
   1. TOKENS & CUSTOM PROPERTIES
   ------------------------------------------------------------------ */
:root {
  /* Primaire groenpalette — aards, professioneel */
  --green-950: #071a10;
  --green-900: #0d2b1a;
  --green-800: #153d27;
  --green-700: #1d5236;
  --green-600: #276944;
  --green-500: #318254;
  --green-400: #3fa069;
  --green-300: #6dbf93;
  --green-100: #e3f2eb;
  --green-50:  #f2faf6;

  /* Accent — rogge/goud */
  --gold-700: #8a5c1e;
  --gold-600: #a97028;
  --gold-500: #c9893a;
  --gold-400: #dba85e;
  --gold-100: #fdf3e3;

  /* Neutraal */
  --neutral-900: #161e1a;
  --neutral-700: #374540;
  --neutral-500: #637068;
  --neutral-300: #a8b5ae;
  --neutral-100: #edf2ef;
  --neutral-50:  #f7faf8;
  --white: #ffffff;

  /* Typografie */
  --font-head: 'Sora', 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 9999px;

  /* Schaduwen */
  --shadow-xs: 0 1px 4px rgba(0,0,0,.06);
  --shadow-sm: 0 4px 12px rgba(0,0,0,.07);
  --shadow-md: 0 8px 28px rgba(0,0,0,.09);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.12);

  /* Layout */
  --max-w: 1180px;
  --nav-h: 76px;

  /* Transities */
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--neutral-700);
  background: var(--neutral-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  color: var(--green-950);
  line-height: 1.2;
  letter-spacing: -.02em;
}

/* ------------------------------------------------------------------
   3. LAYOUT HULPKLASSEN
   ------------------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section {
  padding-block: 6rem;
}
.section--alt { background: var(--green-50); }
.section--dark {
  background: var(--green-950);
  color: var(--neutral-100);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p { color: var(--neutral-300); }

/* ------------------------------------------------------------------
   4. TYPOGRAFIE HELPERS
   ------------------------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  border: 1px solid rgba(49,130,84,.18);
  padding: .35rem .9rem;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
}
.eyebrow--gold {
  color: var(--gold-600);
  background: var(--gold-100);
  border-color: rgba(201,137,58,.2);
}
.eyebrow--light {
  color: var(--gold-400);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}

.section-intro {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-intro h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: .85rem; }
.section-intro p { font-size: 1.075rem; line-height: 1.7; }

/* ------------------------------------------------------------------
   5. KNOPPEN
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9375rem;
  padding: .8rem 1.6rem;
  border-radius: var(--r-md);
  transition: all .28s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.1rem; height: 1.1rem; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30,82,54,.28);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-400) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30,82,54,.36);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--green-700);
  border: 1.5px solid var(--green-700);
}
.btn--outline:hover {
  background: var(--green-100);
  transform: translateY(-2px);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-400) 100%);
  color: var(--green-950);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(201,137,58,.3);
}
.btn--gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.btn--ghost-white {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
.btn--lg { padding: .95rem 2rem; font-size: 1.025rem; }
.btn--sm { padding: .55rem 1.1rem; font-size: .875rem; border-radius: var(--r-sm); }

/* ------------------------------------------------------------------
   6. NAV
   ------------------------------------------------------------------ */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(21,61,39,.07);
  z-index: 1000;
  transition: height .3s var(--ease), box-shadow .3s var(--ease);
}
.site-nav.scrolled {
  height: 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  background: rgba(255,255,255,.97);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: clamp(.4rem, .8vw, .75rem);
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--green-900);
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green-800), var(--green-500));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  box-shadow: 0 3px 10px rgba(21,61,39,.22);
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 20px; height: 20px; }
.nav-logo-sub {
  display: flex; flex-direction: column;
}
.nav-logo-name { line-height: 1.1; }
.nav-logo-tagline {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-family: var(--font-body);
}

/* Nav Menu (links + CTA) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 2rem);
  flex-shrink: 1;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 1.1vw, 1.45rem);
  flex-wrap: nowrap;
}
.nav-link {
  font-size: clamp(0.8125rem, 0.85vw, 0.9375rem);
  font-weight: 600;
  color: var(--neutral-700);
  position: relative;
  padding: 0.25rem 0.15rem 3px;
  white-space: nowrap;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green-500);
  border-radius: 2px;
  transition: width .25s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--green-600); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-actions .btn {
  padding: 0.5rem clamp(0.75rem, 1vw, 1.15rem);
  font-size: clamp(0.8125rem, 0.85vw, 0.875rem);
  white-space: nowrap;
}

/* Hamburger */
.nav-burger {
  display: none;
  align-items: center;
  gap: .75rem;
  padding: .45rem .95rem;
  color: var(--green-900);
  background: var(--green-50);
  border: 1px solid var(--green-200);
  cursor: pointer;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: all .2s var(--ease);
}
.nav-burger:hover {
  background: var(--green-100);
  border-color: var(--green-300);
}
.nav-burger-label {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
}
.nav-burger svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ------------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------------ */
.hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 5rem;
  background: linear-gradient(160deg, var(--green-50) 0%, #ddeee5 55%, var(--green-100) 100%);
  position: relative;
  overflow: hidden;
}
/* Subtiel dot-patroon */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--green-300) .7px, transparent .7px);
  background-size: 22px 22px;
  opacity: .25;
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* Tekst-kolom */
.hero-text { max-width: 620px; }
.hero-h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 800;
  color: var(--green-950);
  line-height: 1.12;
  margin-bottom: 1.1rem;
}
.hero-h1 em {
  font-style: normal;
  color: var(--green-600);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--neutral-500);
  line-height: 1.72;
  margin-bottom: 2rem;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}
/* Statistiekbalk */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(21,61,39,.12);
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-700);
  display: block;
  line-height: 1;
}
.hero-stat-lbl {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--neutral-500);
  margin-top: .3rem;
}
/* Visueel-kolom */
.hero-visual { position: relative; }
.hero-img-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  transition: transform .6s var(--ease);
}
.hero-img-card:hover { transform: perspective(900px) rotateY(0deg) rotateX(0deg); }
.hero-img-card img {
  width: 100%; height: 460px;
  object-fit: cover;
  display: block;
}
/* Drijvend kaartje */
.hero-float {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--white);
  border: 1px solid rgba(21,61,39,.1);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero-float-icon {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: var(--gold-100);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
}
.hero-float-icon svg { width: 22px; height: 22px; }
.hero-float-title {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--green-950);
}
.hero-float-sub { font-size: .78rem; color: var(--neutral-500); }

/* ------------------------------------------------------------------
   7B. SUBPAGE HERO & BREADCRUMBS
   ------------------------------------------------------------------ */
.hero-subpage {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3.5rem;
  background: linear-gradient(160deg, var(--green-50) 0%, #ddeee5 60%, var(--green-100) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(21,61,39,.08);
}
.hero-subpage::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--green-300) .7px, transparent .7px);
  background-size: 22px 22px;
  opacity: .25;
  pointer-events: none;
}
.hero-subpage-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--neutral-500);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--neutral-300); }

/* ------------------------------------------------------------------
   7C. PILLAR GRID (HOMEPAGE)
   ------------------------------------------------------------------ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}
.pillar-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.pillar-card:hover .pillar-media img {
  transform: scale(1.05);
}
.pillar-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(21,61,39,.88);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.pillar-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pillar-title {
  font-size: 1.25rem;
  margin-bottom: .75rem;
}
.pillar-desc {
  font-size: .9375rem;
  line-height: 1.62;
  color: var(--neutral-500);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  color: var(--green-600);
  font-size: .9375rem;
  transition: gap .2s var(--ease);
}
.pillar-link svg { width: 18px; height: 18px; }
.pillar-card:hover .pillar-link {
  gap: .75rem;
  color: var(--green-700);
}

/* ------------------------------------------------------------------
   7D. PAGE CTA BANNER
   ------------------------------------------------------------------ */
.page-cta-section {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 100%);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-cta-h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-cta-sub {
  font-size: 1.05rem;
  color: var(--green-100);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.page-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------------
   8. OVER ONS
   ------------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.about-media { position: relative; }
.about-img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.about-location-card {
  position: absolute;
  bottom: -22px; right: -16px;
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  border: 1px solid var(--green-700);
}
.about-loc-title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--gold-400);
  margin-bottom: .3rem;
}
.about-loc-desc {
  font-size: .84rem;
  color: var(--neutral-300);
  line-height: 1.5;
}
.about-content h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  margin-bottom: 1rem;
}
.about-lead {
  font-size: 1.075rem;
  font-weight: 600;
  color: var(--green-700);
  line-height: 1.6;
  margin-bottom: .9rem;
}
.about-body { margin-bottom: 1.25rem; }

.facility-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin: 1.5rem 0 1.75rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--neutral-700);
}
.check-item svg {
  width: 16px; height: 16px;
  color: var(--green-500);
  flex-shrink: 0;
}

/* Team kaarten */
.team-section { padding-top: 3.5rem; border-top: 1px solid var(--neutral-100); margin-top: 3.5rem; }
.team-intro {
  max-width: 540px;
  margin-bottom: 2rem;
}
.team-intro h3 { font-size: 1.55rem; margin-bottom: .6rem; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.team-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-400));
  opacity: 0;
  transition: opacity .25s;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.team-card:hover::after { opacity: 1; }

.team-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-100);
  border: 2px solid var(--green-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-700);
  flex-shrink: 0;
  overflow: hidden;
}
.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.team-name { font-size: 1.15rem; font-weight: 700; margin-bottom: .15rem; }
.team-role {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold-500);
}
.team-bio {
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--neutral-500);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .875rem;
  font-weight: 700;
  color: #0a66c2;
  margin-top: auto;
}
.team-linkedin:hover { text-decoration: underline; }
.team-linkedin svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------------
   9. SORGHUM & RASSEN
   ------------------------------------------------------------------ */
.sorghum-intro {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.sorghum-intro-text h3 {
  font-size: 1.55rem;
  margin-bottom: .85rem;
}
.sorghum-intro-text p { margin-bottom: .85rem; }

.sorghum-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.pill-item {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--r-md);
  padding: .9rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}
.pill-icon {
  width: 30px; height: 30px;
  background: var(--green-700);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.pill-icon svg { width: 16px; height: 16px; }
.pill-title { font-size: .875rem; font-weight: 700; color: var(--green-950); }
.pill-sub { font-size: .75rem; color: var(--neutral-500); }

/* Rassen vakken */
.rassen-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.ras-card {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.ras-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}
.ras-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .85rem; }
.ras-code {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-700);
  line-height: 1;
}
.ras-tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .28rem .7rem;
  border-radius: var(--r-pill);
}
.tag--wit { background: #fef8f0; color: #a05e1a; }
.tag--kort { background: #edf7f1; color: #257a44; }
.tag--food { background: #fdf0ef; color: #c0391e; }

.ras-thumb {
  width: 52px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.12));
  flex-shrink: 0;
  margin-left: .5rem;
}

.ras-type { font-size: .9375rem; font-weight: 700; color: var(--neutral-700); margin-bottom: .65rem; }
.ras-desc { font-size: .9375rem; line-height: 1.62; color: var(--neutral-500); flex-grow: 1; margin-bottom: 1.25rem; }

.ras-specs { border-top: 1px dashed var(--neutral-100); padding-top: 1rem; margin-bottom: 1rem; }
.spec { display: flex; justify-content: space-between; font-size: .8125rem; padding: .28rem 0; }
.spec-k { color: var(--neutral-300); }
.spec-v { font-weight: 700; color: var(--green-950); }

/* Extra vakken onder rassen */
.extra-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
}
.extra-card {
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.extra-mix {
  background: linear-gradient(135deg, var(--green-900) 0%, #1a4733 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.extra-mix h3 { color: var(--white); font-size: 1.4rem; margin-bottom: .4rem; }
.extra-mix p { color: #c8ddd4; font-size: .9375rem; line-height: 1.65; }
.extra-mix .rustgewas-badge {
  display: inline-block;
  background: rgba(201,137,58,.22);
  border: 1px solid var(--gold-400);
  color: var(--gold-400);
  font-size: .78rem;
  font-weight: 700;
  padding: .28rem .75rem;
  border-radius: var(--r-pill);
  margin-bottom: .25rem;
}
.extra-guide {
  background: var(--white);
  border: 1.5px solid var(--gold-400);
  box-shadow: var(--shadow-sm);
}
.extra-guide h3 { font-size: 1.4rem; color: var(--green-950); margin-bottom: .4rem; }
.extra-guide p { font-size: .9375rem; color: var(--neutral-500); line-height: 1.6; }
.guide-icon-row { display: flex; align-items: center; gap: .65rem; margin-bottom: .85rem; }
.guide-icon {
  width: 40px; height: 40px;
  background: var(--gold-100);
  color: var(--gold-500);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.guide-icon svg { width: 22px; height: 22px; }

/* ------------------------------------------------------------------
   10. PROJECTEN
   ------------------------------------------------------------------ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}
.project-media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--green-100);
}
.project-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.project-card:hover .project-media img { transform: scale(1.06); }
.project-cat {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(7,26,16,.78);
  color: var(--white);
  backdrop-filter: blur(5px);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: var(--r-pill);
}
.project-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.project-title { font-size: 1.2rem; margin-bottom: .5rem; }
.project-intro { font-size: .9375rem; line-height: 1.6; color: var(--neutral-500); margin-bottom: 1rem; }
.project-bullets { margin-top: auto; border-top: 1px solid var(--neutral-100); padding-top: 1rem; }
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .84rem;
  color: var(--neutral-700);
  margin-bottom: .45rem;
  line-height: 1.4;
}
.bullet-item svg {
  width: 14px; height: 14px;
  color: var(--green-500);
  margin-top: 2px;
  flex-shrink: 0;
}

/* project kaarten zonder media */
.project-card--text {
  padding: 1.75rem;
}
.project-card--text .project-title { font-size: 1.2rem; margin-bottom: .5rem; }
.project-card--text .project-intro { font-size: .9375rem; color: var(--neutral-500); line-height: 1.6; margin-bottom: 1rem; }
.project-card--text .project-bullets { margin-top: auto; border-top: 1px solid var(--neutral-100); padding-top: 1rem; }

/* ------------------------------------------------------------------
   11. SEEDS & CONSULT (DONKERE SECTIE)
   ------------------------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
  border-color: var(--green-500);
}
.service-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(49,130,84,.18);
  border: 1px solid rgba(49,130,84,.3);
  color: var(--green-300);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-title { font-size: 1.25rem; color: var(--white); margin-bottom: .65rem; }
.service-desc { font-size: .9375rem; color: var(--neutral-300); line-height: 1.65; }

/* Partners */
.partners-row { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2.5rem; }
.partners-label {
  text-align: center;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--neutral-300);
  margin-bottom: 1.75rem;
}
.partners-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}
.partner-pill {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: .65rem 1.25rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--neutral-300);
  transition: all .2s;
}
.partner-pill:hover {
  background: rgba(255,255,255,.09);
  color: var(--white);
  border-color: var(--green-500);
}
.partner-pill svg { width: 18px; height: 18px; color: var(--gold-400); }

/* ------------------------------------------------------------------
   12. CONTACT
   ------------------------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info { }
.contact-info h2 { font-size: clamp(1.75rem, 2.8vw, 2.2rem); margin-bottom: 1rem; }
.contact-info-text { font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 42px; height: 42px;
  background: var(--green-100);
  border-radius: 10px;
  color: var(--green-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-row-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--neutral-300);
  margin-bottom: .15rem;
}
.contact-row-val {
  font-size: 1.025rem;
  font-weight: 700;
  color: var(--green-950);
}
.contact-row-val a:hover { color: var(--green-600); }

/* Formulier */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-col { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-label { font-size: .84rem; font-weight: 700; color: var(--neutral-700); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-size: .9375rem;
  font-family: var(--font-body);
  color: var(--neutral-700);
  background: var(--neutral-50);
  border: 1.5px solid var(--neutral-100);
  border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(49,130,84,.14);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-toast {
  display: none;
  padding: 1rem;
  border-radius: var(--r-sm);
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #15803d;
  font-weight: 600;
  font-size: .9375rem;
  margin-bottom: 1rem;
}

/* ------------------------------------------------------------------
   13. FOOTER
   ------------------------------------------------------------------ */
.site-footer {
  background: var(--green-950);
  color: var(--neutral-300);
  border-top: 1px solid var(--green-800);
}
/* Onderbanner */
.footer-onderbanner {
  background: linear-gradient(135deg, var(--green-800) 0%, #0e2e1c 100%);
  border-bottom: 1px solid var(--green-700);
  padding: 2.25rem 0;
}
.footer-onderbanner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-onderbanner h3 { font-size: 1.5rem; color: var(--white); margin-bottom: .25rem; }
.footer-onderbanner p { color: var(--gold-400); font-weight: 600; font-size: 1.025rem; }

.footer-main { padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { margin-top: .85rem; font-size: .9375rem; line-height: 1.6; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-link { font-size: .9375rem; color: var(--neutral-300); transition: color .2s, padding-left .2s; }
.footer-link:hover { color: var(--white); padding-left: 4px; }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  color: var(--neutral-300);
  flex-wrap: wrap;
  gap: .75rem;
}

/* ------------------------------------------------------------------
   14. BACK TO TOP
   ------------------------------------------------------------------ */
.btt {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: all .3s var(--ease);
  z-index: 900;
}
.btt svg { width: 20px; height: 20px; }
.btt.show { opacity: 1; visibility: visible; }
.btt:hover { background: var(--green-500); transform: translateY(-3px); }

/* ------------------------------------------------------------------
   15. RESPONSIVE
   ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-layout,
  .about-grid,
  .sorghum-intro,
  .contact-layout,
  .extra-grid { grid-template-columns: 1fr; }

  .hero-text { max-width: 100%; text-align: center; }
  .hero-cta-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; }

  .pillar-grid,
  .rassen-grid,
  .project-grid,
  .services-grid { grid-template-columns: repeat(2,1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .footer-onderbanner-inner { flex-direction: column; text-align: center; }
  .about-location-card { position: static; margin-top: 1.25rem; }
}

@media (max-width: 1080px) {
  :root { --nav-h: 68px; }

  .nav-burger { display: flex; align-items: center; justify-content: center; }

  .nav-menu {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.75rem 2rem;
    box-shadow: 0 14px 35px rgba(0,0,0,.12);
    border-bottom: 1px solid var(--neutral-100);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform .35s var(--ease), opacity .35s var(--ease), visibility .35s;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 1rem; width: 100%; }
  .nav-link { font-size: 1.05rem; padding: .4rem 0; width: 100%; }
  .nav-actions { flex-direction: column; width: 100%; margin-top: 1.25rem; }
  .nav-actions .btn { width: 100%; justify-content: center; font-size: 1rem; padding: .75rem 1.25rem; }
}

@media (max-width: 768px) {
  .pillar-grid,
  .rassen-grid,
  .project-grid,
  .services-grid,
  .team-grid { grid-template-columns: 1fr; }

  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .sorghum-pills { grid-template-columns: 1fr; }
  .facility-checks { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; text-align: center; }
}
