
/* Proeven page: hospitality presentation inspired by the Montferland concept. */
.proeven-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background: #17211d;
}

.proeven-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.proeven-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 16, 13, 0.88), rgba(10, 16, 13, 0.32) 64%, rgba(10, 16, 13, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
}

.proeven-hero-content {
  position: relative;
  z-index: 2;
  padding: 170px 0 86px;
  max-width: 760px;
}

.proeven-hero h1 {
  margin: 12px 0 18px;
  max-width: 10ch;
  font: clamp(3.4rem, 7vw, 6.6rem) / 0.92 Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
}

.proeven-hero .lead {
  max-width: 680px;
}

.horeca-moments {
  position: relative;
  z-index: 4;
  margin-top: -38px;
  padding-top: 0;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.moment-card {
  min-height: 176px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(31, 39, 35, 0.12);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.moment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.moment-card .number {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font: 1.8rem Georgia, serif;
}

.moment-card h2 {
  margin: 0 0 7px;
  font: 1.4rem Georgia, serif;
}

.moment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.proeven-intro {
  padding-bottom: 42px;
}

.proeven-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.proeven-filter button {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.proeven-filter button.active {
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
}

.horeca-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.horeca-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(31, 39, 35, 0.1);
}

.horeca-card[hidden] {
  display: none;
}

.horeca-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.horeca-card.litjes img {
  object-fit: contain;
  padding: 28px;
  background: #ffffff;
}

.horeca-card-content {
  padding: 24px;
}

.horeca-card h3 {
  margin: 11px 0 8px;
  font: 1.55rem Georgia, serif;
}

.horeca-card p {
  min-height: 4.8em;
  margin: 0;
  color: var(--muted);
}

.horeca-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.horeca-card-actions a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f0eadf;
  color: var(--green);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 800;
}

.market-taste-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 30px;
  background: #17211d;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.market-taste-banner img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.market-taste-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.market-taste-copy h2 {
  margin: 8px 0 13px;
  font: clamp(2.2rem, 4vw, 3.8rem) / 1 Georgia, serif;
}

.market-taste-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.home-taste-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: #17211d;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.home-taste-panel h2 {
  margin: 8px 0 12px;
  font: clamp(2.2rem, 4vw, 3.8rem) / 1 Georgia, serif;
}

.home-taste-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.home-taste-images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  min-height: 330px;
}

.home-taste-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 21px;
}

@media (max-width: 1050px) {
  .moment-grid,
  .horeca-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-taste-panel,
  .market-taste-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .proeven-hero-content {
    padding: 130px 0 72px;
  }

  .horeca-moments {
    margin-top: -22px;
  }

  .moment-grid,
  .horeca-card-grid {
    grid-template-columns: 1fr;
  }

  .market-taste-copy,
  .home-taste-panel {
    padding: 25px;
  }

  .home-taste-images {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-taste-images img {
    height: 220px;
  }
}
