:root {
  --navy: #061f3f;
  --deep: #03172f;
  --blue: #073d78;
  --gold: #d39a2f;
  --gold-light: #efc565;
  --text: #10233f;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: white;
}

.container {
  width: min(1500px, calc(100% - 56px));
  margin: 0 auto;
}

.header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.header-inner {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
}

.brand img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: -10px 0;
}

.brand h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(25px, 2.5vw, 40px);
  line-height: 1;
}

.brand p {
  margin: 8px 0 0;
  color: var(--gold);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2.3px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

.menu a {
  color: var(--navy);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.menu a.active,
.menu a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 24px;
}

/* BELANGRIJK:
   Dit is de juiste hero met zoutzakken + bananenplantage + logo verwerkt.
   Geen stellingen, geen losse verkeerde achtergrond.
*/
.hero {
  height: 560px;
  background-image: url("hero-zout-bananen-logo.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.trust-bar {
  background: linear-gradient(135deg, var(--deep), var(--blue));
  color: white;
  padding: 25px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-right: 1px solid rgba(211,154,47,.65);
  padding: 0 26px;
}

.trust-grid div:last-child { border-right: 0; }

.trust-grid span {
  color: var(--gold);
  font-size: 42px;
}

.trust-grid strong,
.trust-grid b {
  display: block;
}

.trust-grid strong {
  font-size: 16px;
  margin-bottom: 4px;
}

.trust-grid b {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 500;
}

.products {
  background: linear-gradient(180deg, white, #fbfbfb);
  padding: 44px 0 52px;
}

.label {
  text-align: center;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.label.left {
  text-align: left;
}

.products h2,
.why h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.products h2 span {
  color: var(--gold);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.product-card {
  background: white;
  border: 1px solid rgba(211,154,47,.65);
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 30px rgba(6,31,63,.08);
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.product-card h3 {
  margin: 16px 0 10px;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 25px;
}

.product-card p {
  min-height: 68px;
  margin: 0;
  padding: 0 15px 14px;
  line-height: 1.45;
  font-size: 14px;
}

.product-card a {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.about-box {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  color: white;
  padding: 30px 26px;
  border-radius: 6px;
}

.about-box h2 {
  margin: 0 0 20px;
  color: white;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: uppercase;
}

.about-box h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  background: var(--gold);
}

.about-box p {
  font-size: 13px;
  line-height: 1.7;
}

.about-box a {
  display: inline-block;
  margin-top: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  text-decoration: none;
  padding: 13px 26px;
  font-weight: 900;
}

.why {
  background: linear-gradient(135deg, var(--deep), var(--blue));
  color: white;
  padding: 62px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.why h2 {
  color: white;
  text-align: left;
}

.why p {
  line-height: 1.65;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.why-cards div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
}

.why-cards span {
  grid-row: span 2;
  color: var(--gold-light);
  font-size: 46px;
}

.why-cards h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
}

.why-cards p {
  margin: 0;
  color: rgba(255,255,255,.86);
}

.info {
  background: #fafafa;
  padding: 34px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.45fr 1.15fr;
  gap: 28px;
}

.info-grid > div {
  border-right: 1px solid rgba(211,154,47,.55);
  padding-right: 24px;
}

.info-grid > div:last-child {
  border-right: 0;
}

.info h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
}

.info ul {
  margin: 0;
  padding-left: 22px;
  line-height: 1.75;
  font-size: 14px;
}

.info p {
  margin: 10px 0 0;
  line-height: 1.45;
  font-size: 14px;
}

.info a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}

footer {
  background: var(--deep);
  color: white;
  text-align: center;
  padding: 16px;
  border-top: 2px solid var(--gold);
  font-size: 13px;
}

@media (max-width: 1250px) {
  .header-inner { min-height: 100px; }
  .brand img { width: 105px; height: 105px; }
  .menu-btn { display: block; }

  .menu {
    display: none;
    position: absolute;
    left: 28px;
    right: 28px;
    top: 100px;
    background: white;
    box-shadow: 0 20px 55px rgba(0,0,0,.18);
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu.open { display: flex; }

  .product-layout,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid div:nth-child(2),
  .info-grid > div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1500px); }

  .header-inner { min-height: 82px; }
  .brand { gap: 12px; }
  .brand img { width: 70px; height: 70px; }
  .brand h1 { font-size: 17px; }
  .brand p { font-size: 9px; letter-spacing: 1px; }

  .menu {
    top: 82px;
    left: 14px;
    right: 14px;
  }

  .hero {
    height: 360px;
    background-size: cover;
    background-position: center center;
  }

  .trust-grid,
  .product-grid,
  .why-cards,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .info-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(211,154,47,.55);
    padding-bottom: 18px;
  }

  .trust-grid div:last-child,
  .info-grid > div:last-child {
    border-bottom: 0;
  }

  .product-card img {
    height: 245px;
  }
}
