/* =====================================
   ERVARINGEN PAGE
   ===================================== */

.page-ervaringen{
  background: var(--bg-page);
  color: var(--text-on-light);
}

/* =========================
   HERO
========================= */

.exp-hero{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.exp-hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.exp-hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.exp-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(14, 24, 21, 0.62) 0%,
      rgba(14, 24, 21, 0.42) 45%,
      rgba(14, 24, 21, 0.24) 100%
    );
}

.exp-hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(5rem, 10vh, 7rem);
}

.exp-hero-content{
  max-width: 760px;
  color: var(--text-on-dark);
}

.exp-eyebrow{
  margin: 0 0 var(--space-4);
  color: var(--gold-500);
  font-size: var(--fs-100);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exp-hero-content h1{
  margin-bottom: var(--space-6);
  max-width: 14ch;
}

.exp-lead{
  max-width: 48ch;
  margin-bottom: var(--space-5);
}

.exp-hero-content p:not(.exp-eyebrow):not(.exp-lead){
  max-width: 54ch;
  margin-bottom: 0;
}

/* =========================
   SHARED HEADERS
========================= */

.exp-section-header{
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.exp-section-header h2{
  margin-bottom: var(--space-5);
}

.exp-section-header p{
  margin: 0;
}

.exp-section-header-left{
  text-align: left;
  margin-inline: 0;
  max-width: 760px;
}

/* =========================
   INTRO
========================= */

.exp-intro{
  background: var(--bg-section-sand);
  padding-block: clamp(4rem, 8vw, 6rem);
}

.exp-intro-inner{
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.exp-filter-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.exp-filter-links a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.54);
  color: var(--text-on-light);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.exp-filter-links a:hover,
.exp-filter-links a:focus-visible{
  transform: translateY(-2px);
  border-color: rgba(200,169,81,0.45);
  box-shadow: var(--shadow-sm);
  outline: none;
}

/* =========================
   SECTIONS
========================= */

.exp-section{
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding-block: clamp(4rem, 8vw, 6rem);
}

.exp-section-light{
  background: var(--bg-page);
}

.exp-section-green{
  background: var(--bg-section-green);
  color: var(--text-on-dark);
}

/* =========================
   REVIEW CARDS
========================= */

.exp-review-list{
  display: grid;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.exp-review-card{
  scroll-margin-top: calc(var(--header-height) + 24px);
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 26px;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}

.exp-review-card-dark{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}

.exp-review-card:target{
  outline: 2px solid rgba(200,169,81,0.55);
  outline-offset: 6px;
}

.exp-review-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.exp-tag{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(91, 106, 85, 0.12);
  border: 1px solid rgba(91, 106, 85, 0.18);
  font-size: 0.95rem;
  line-height: 1;
}

.exp-tag-dark{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.exp-quote{
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.exp-quote p{
  margin: 0;
}

.exp-author{
  margin: 0;
  opacity: 0.82;
}

/* =========================
   SMALL REVIEW LINK
   voor gebruik op andere pagina's
========================= */

.review-link{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.review-link:hover,
.review-link:focus-visible{
  opacity: 0.78;
  transform: translateY(-1px);
  outline: none;
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 901px){
  .exp-review-list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 900px){

  .exp-hero{
    min-height: auto;
  }

  .exp-hero-inner{
    padding-block: 5rem 4rem;
  }

  .exp-section-header{
    text-align: left;
    margin-inline: 0;
    max-width: none;
  }

  .exp-filter-links{
    justify-content: flex-start;
  }
}

@media (max-width: 767px){

  .exp-hero{
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    align-items: stretch;
  }

  .exp-hero-inner{
    display: flex;
    align-items: flex-start;
    padding-top: clamp(3rem, 7vh, 4rem);
    padding-bottom: clamp(5rem, 10vh, 7rem);
  }

  .exp-hero-content{
    width: 100%;
    max-width: 24rem;
  }

  .exp-hero-content h1{
    max-width: 10ch;
    margin-bottom: 1rem;
  }

  .exp-lead{
    margin-bottom: 1rem;
  }

  .exp-intro,
  .exp-section{
    padding-block: 3rem;
  }

  .exp-review-list{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){

  .exp-hero-content{
    max-width: 17rem;
  }

  .exp-filter-links{
    flex-direction: column;
    align-items: stretch;
  }

  .exp-filter-links a{
    width: 100%;
    justify-content: center;
  }
}