/* === FRIETFABRIQUE — site styles === */
:root {
  --groen: #2C3A2A;
  --groen-diep: #1F2A1D;
  --groen-licht: #4A5C44;
  --oker: #C9A050;
  --oker-licht: #E0BC6F;
  --oker-diep: #A8854A;
  --beton: #A39E94;
  --beton-licht: #C8C2B6;
  --walnoot: #5D3A1A;
  --walnoot-licht: #8B6240;
  --cream: #F4EDE0;
  --cream-warm: #EFE5D2;
  --zwart: #1A1A1A;
  --zwart-zacht: #2A2622;

  --maxw: 1280px;
  --gutter: 32px;
  --radius: 2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--cream); color: var(--zwart); }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: 1480px; margin: 0 auto; padding: 0 var(--gutter); }

/* ===== TYPOGRAFIE-PRIMITIVES ===== */
.eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--oker);
  text-transform: uppercase;
}
.eyebrow-dark { color: var(--walnoot); }
.h-rye {
  font-family: 'Rye', serif;
  letter-spacing: 2px;
  line-height: 1.02;
  color: var(--oker);
  -webkit-text-stroke: 0.5px var(--cream);
}
.h-rye-on-cream {
  font-family: 'Rye', serif;
  letter-spacing: 2px;
  line-height: 1.02;
  color: var(--groen);
  -webkit-text-stroke: 0.4px var(--oker);
}
.h-playfair {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
}
.label-bebas {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--groen-diep);
  color: var(--cream);
  border-bottom: 1px solid rgba(201,160,80,0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  max-width: 1480px;
  margin: 0 auto;
}
.nav-brand {
  font-family: 'Rye', serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--oker);
  -webkit-text-stroke: 0.4px var(--cream);
  white-space: nowrap;
}
.nav-brand small {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--cream);
  opacity: 0.6;
  -webkit-text-stroke: 0;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 14px;
}
.nav-links a {
  color: var(--cream);
  opacity: 0.78;
  transition: opacity .2s, color .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--oker); opacity: 1; }
.nav-links a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 1px; background: var(--oker);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--oker);
  color: var(--groen);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 14px;
  padding: 12px 22px;
  border: 1px solid var(--oker);
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--oker-licht); }
.nav-cta .dot {
  width: 7px; height: 7px; background: var(--groen); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(44,58,42,0.25);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 15px;
  padding: 16px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn-primary {
  background: var(--oker);
  color: var(--groen);
}
.btn-primary:hover { background: var(--oker-licht); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,237,224,0.4);
}
.btn-ghost:hover { border-color: var(--oker); color: var(--oker); }
.btn-dark {
  background: var(--groen);
  color: var(--cream);
}
.btn-dark:hover { background: var(--groen-licht); }
.btn-arrow::after {
  content: '→';
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  transition: transform .2s;
}
.btn:hover.btn-arrow::after { transform: translateX(3px); }

/* ===== FOOTER ===== */
.foot {
  background: var(--groen-diep);
  color: var(--cream);
  padding: 80px 0 40px;
  margin-top: 120px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201,160,80,0.18);
}
.foot h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--oker);
  margin-bottom: 18px;
}
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.foot a { opacity: 0.75; font-size: 14px; }
.foot a:hover { opacity: 1; color: var(--oker); }
.foot-brand {
  font-family: 'Rye', serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--oker);
  -webkit-text-stroke: 0.4px var(--cream);
  margin-bottom: 14px;
}
.foot-tag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  opacity: 0.8;
  max-width: 320px;
  font-size: 15px;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
}

/* ===== UTIL ===== */
.divider-rule {
  display: flex; align-items: center; gap: 18px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--oker);
  text-transform: uppercase;
}
.divider-rule::before, .divider-rule::after {
  content: ''; flex: 1; height: 1px; background: currentColor; opacity: 0.4;
}

.halal-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--oker);
  color: var(--oker);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 12px;
  padding: 6px 12px;
}
.halal-badge .dot { width: 6px; height: 6px; background: var(--oker); border-radius: 50%; }

/* placeholder image — donker premium met grain */
.ph {
  position: relative;
  background:
    radial-gradient(circle at 30% 25%, rgba(201,160,80,0.20), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(93,58,26,0.45), transparent 60%),
    linear-gradient(135deg, #2A1F12 0%, #14100A 100%);
  overflow: hidden;
}
.ph::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(244,237,224,0.05) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
  opacity: 0.7;
  pointer-events: none;
}
.ph-label {
  position: absolute; left: 16px; bottom: 14px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 11px;
  color: var(--oker);
  opacity: 0.7;
  z-index: 2;
}

/* light placeholder */
.ph-light {
  background:
    radial-gradient(circle at 30% 25%, rgba(201,160,80,0.35), transparent 55%),
    linear-gradient(135deg, #E8DCC2 0%, #C8B98C 100%);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
