/* =========================================================
   MIRACLE LIQUORS – HOMEPAGE LUXE VERSIE
   Titellettertype: Cinzel Decorative
   Bodylettertype: Fauna One

   Alle homepageclasses beginnen met mlh-
   ========================================================= */


/* ---------------------------------------------------------
   1. LOKALE VARIABELEN EN BASISINSTELLINGEN
   --------------------------------------------------------- */

.mlh-home {
  --mlh-green-950: #1f3a32;
  --mlh-green-900: #29483e;
  --mlh-green-850: #305247;
  --mlh-green-800: #355b4e;
  --mlh-green-700: #477063;
  --mlh-green-100: #edf2ef;

  --mlh-gold-dark: #b99a50;
  --mlh-gold: #d9bb6f;
  --mlh-gold-light: #ead79e;
  --mlh-gold-soft: #f2e7c8;

  --mlh-white: #ffffff;
  --mlh-cream: #f8f7f2;
  --mlh-cream-dark: #f0eee7;

  --mlh-grey-100: #f3f3f0;
  --mlh-grey-200: #e1e2dd;
  --mlh-grey-400: #a5aaa6;
  --mlh-grey-600: #646a66;

  --mlh-text: #303632;
  --mlh-text-soft: #555d58;

  --mlh-radius-sm: 4px;
  --mlh-radius-md: 8px;
  --mlh-radius-lg: 14px;

  --mlh-shadow-xs:
    0 3px 12px rgba(25, 50, 41, 0.06);

  --mlh-shadow-sm:
    0 8px 24px rgba(25, 50, 41, 0.09);

  --mlh-shadow-md:
    0 18px 48px rgba(25, 50, 41, 0.14);

  --mlh-shadow-dark:
    0 18px 45px rgba(0, 0, 0, 0.2);

  --mlh-container: 1180px;

  position: relative;
  overflow: hidden;

  background: var(--mlh-white);
  color: var(--mlh-text);

  font-family: "Fauna One", Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
}

.mlh-home *,
.mlh-home *::before,
.mlh-home *::after {
  box-sizing: border-box;
}

.mlh-home img {
  display: block;
  max-width: 100%;
}

.mlh-home a {
  text-decoration: none;
}

.mlh-home button,
.mlh-home input,
.mlh-home textarea,
.mlh-home select {
  font: inherit;
}

.mlh-home button {
  margin: 0;
}

.mlh-home h1,
.mlh-home h2,
.mlh-home h3,
.mlh-home p,
.mlh-home blockquote {
  overflow-wrap: break-word;
}


/* ---------------------------------------------------------
   2. ALGEMENE LAYOUT
   --------------------------------------------------------- */

.mlh-container {
  width: min(calc(100% - 48px), var(--mlh-container));
  margin-inline: auto;
}

.mlh-section-header {
  width: min(780px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.mlh-section-title {
  margin: 0;

  color: var(--mlh-green-900);

  font-family: "Cinzel Decorative", Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;

  text-wrap: balance;
}

.mlh-section-title--light {
  color: var(--mlh-white);
}

.mlh-section-intro {
  max-width: 700px;
  margin: 18px auto 0;

  color: var(--mlh-grey-600);

  font-size: 1rem;
  line-height: 1.78;
}

.mlh-section-intro--left {
  margin-inline: 0;
}

.mlh-eyebrow {
  margin: 0 0 11px;

  color: var(--mlh-green-700);

  font-family: "Fauna One", Georgia, serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.mlh-eyebrow--light {
  color: rgba(255, 255, 255, 0.9);
}

.mlh-eyebrow--gold {
  color: var(--mlh-gold-light);
}

.mlh-divider {
  width: 64px;
  height: 1px;
  margin: 24px auto 26px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--mlh-gold),
      transparent
    );
}


/* ---------------------------------------------------------
   3. KNOPPEN EN LINKS – VERFIJNDE LUXE VERSIE
   --------------------------------------------------------- */

.mlh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.mlh-actions--center {
  justify-content: center;
}

.mlh-button {
  position: relative;

  display: inline-flex;
  min-height: 48px;
  padding: 13px 24px;

  align-items: center;
  justify-content: center;

  border: 1px solid transparent;
  border-radius: 5px;

  font-family: "Fauna One", Georgia, serif;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;

  cursor: pointer;
  overflow: hidden;

  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.mlh-button:hover {
  transform: translateY(-2px);
}

.mlh-button:active {
  transform: translateY(0);
}

.mlh-button:focus-visible,
.mlh-text-link:focus-visible,
.mlh-card__image-link:focus-visible,
.mlh-cocktail-card__image-link:focus-visible,
.mlh-carousel-button:focus-visible {
  outline: 3px solid var(--mlh-gold-light);
  outline-offset: 4px;
}


/* Gouden primaire knop */

.mlh-button--gold {
  border-color: var(--mlh-gold);
  background:
    linear-gradient(
      180deg,
      var(--mlh-gold-light) 0%,
      var(--mlh-gold) 100%
    );

  color: var(--mlh-green-950);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.mlh-button--gold:hover {
  border-color: var(--mlh-gold-light);
  background:
    linear-gradient(
      180deg,
      #f0dda4 0%,
      var(--mlh-gold-light) 100%
    );

  color: var(--mlh-green-950);

  box-shadow:
    0 11px 26px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}


/* Groene primaire knop */

.mlh-button--green {
  border-color: var(--mlh-green-900);
  background:
    linear-gradient(
      180deg,
      var(--mlh-green-800) 0%,
      var(--mlh-green-900) 100%
    );

  color: var(--mlh-white);

  box-shadow:
    0 8px 20px rgba(31, 58, 50, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mlh-button--green:hover {
  border-color: var(--mlh-green-800);
  background:
    linear-gradient(
      180deg,
      var(--mlh-green-700) 0%,
      var(--mlh-green-800) 100%
    );

  color: var(--mlh-white);

  box-shadow:
    0 11px 26px rgba(31, 58, 50, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


/* Crèmekleurige knop op donkere achtergrond */

.mlh-button--cream {
  border-color: rgba(255, 255, 255, 0.8);
  background:
    linear-gradient(
      180deg,
      var(--mlh-white) 0%,
      var(--mlh-cream) 100%
    );

  color: var(--mlh-green-900);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.mlh-button--cream:hover {
  border-color: var(--mlh-white);
  background: var(--mlh-white);
  color: var(--mlh-green-950);

  box-shadow:
    0 11px 25px rgba(0, 0, 0, 0.2);
}


/* Transparante knop op donkere achtergrond */

.mlh-button--outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(21, 48, 39, 0.28);
  color: var(--mlh-white);

  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.mlh-button--outline-light:hover {
  border-color: var(--mlh-white);
  background: var(--mlh-white);
  color: var(--mlh-green-900);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18);
}


/* Transparante knop op lichte achtergrond */

.mlh-button--outline-green {
  border-color: var(--mlh-green-900);
  background: rgba(255, 255, 255, 0.7);
  color: var(--mlh-green-900);

  box-shadow:
    inset 0 0 0 1px rgba(41, 72, 62, 0.02);
}

.mlh-button--outline-green:hover {
  background: var(--mlh-green-900);
  color: var(--mlh-white);

  box-shadow:
    0 9px 22px rgba(31, 58, 50, 0.18);
}


/* Tekstlinks in kaarten */

.mlh-text-link {
  position: relative;

  display: inline-flex;
  width: fit-content;
  gap: 8px;

  align-items: center;

  color: var(--mlh-green-900);

  font-family: "Fauna One", Georgia, serif;
  font-size: 0.69rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;

  transition:
    color 180ms ease,
    gap 180ms ease;
}

.mlh-text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      var(--mlh-gold),
      rgba(217, 187, 111, 0)
    );

  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.mlh-text-link span {
  color: var(--mlh-gold-dark);
  transition: transform 180ms ease;
}

.mlh-text-link:hover {
  gap: 11px;
  color: var(--mlh-green-700);
}

.mlh-text-link:hover::after {
  transform: scaleX(1);
}

.mlh-text-link:hover span {
  transform: translateX(3px);
}


/* Mobiele knoppen */

@media (max-width: 700px) {
  .mlh-button {
    min-height: 47px;
    padding: 12px 20px;

    font-size: 0.7rem;
    letter-spacing: 0.055em;
  }

  .mlh-text-link {
    font-size: 0.66rem;
  }

  .mlh-hero .mlh-button,
  .mlh-store .mlh-button,
  .mlh-final-cta .mlh-button {
    width: 100%;
  }
}

/* ---------------------------------------------------------
   4. HERO
   --------------------------------------------------------- */

.mlh-hero {
  position: relative;
  min-height: clamp(610px, 79vh, 780px);

  display: flex;
  align-items: center;

  background-image: var(--mlh-hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  isolation: isolate;
}

.mlh-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      90deg,
      rgba(15, 37, 30, 0.9) 0%,
      rgba(22, 48, 39, 0.77) 37%,
      rgba(25, 51, 42, 0.43) 66%,
      rgba(25, 51, 42, 0.12) 100%
    );
}

.mlh-hero__inner {
  padding-block: 92px 78px;
}

.mlh-hero__logo {
  width: clamp(180px, 21vw, 260px);
  height: auto;
  margin-bottom: 24px;
  object-fit: contain;
}

.mlh-hero__content {
  width: min(630px, 100%);
}

.mlh-hero__title {
  max-width: 610px;
  margin: 0;

  color: var(--mlh-white) !important;

  font-family: "Cinzel Decorative", Georgia, serif;
  font-size: clamp(2.45rem, 4.65vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;

  text-wrap: balance;
}

.mlh-hero__text {
  max-width: 555px;
  margin: 21px 0 28px;

  color: rgba(255, 255, 255, 0.87);

  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.72;
}


/* ---------------------------------------------------------
   5. VOORDELENBALK
   --------------------------------------------------------- */

.mlh-benefits {
  position: relative;
  z-index: 2;

  background: var(--mlh-green-900);
  color: var(--mlh-white);

  box-shadow: 0 12px 30px rgba(20, 45, 37, 0.12);
}

.mlh-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mlh-benefit {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 12px;

  min-width: 0;
  padding: 22px 20px;

  align-items: start;

  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.mlh-benefit:last-child {
  border-right: 0;
}

.mlh-benefit__icon {
  color: var(--mlh-gold);

  font-size: 1.05rem;
  line-height: 1.3;
  text-align: center;
}

.mlh-benefit strong,
.mlh-benefit span {
  display: block;
}

.mlh-benefit strong {
  margin-bottom: 4px;

  color: var(--mlh-white);

  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.4;
}

.mlh-benefit div > span {
  color: rgba(255, 255, 255, 0.66);

  font-size: 0.72rem;
  line-height: 1.45;
}


/* ---------------------------------------------------------
   6. INTRODUCTIE
   --------------------------------------------------------- */

.mlh-intro {
  padding: 78px 0 72px;
  background: var(--mlh-white);
}

.mlh-intro__inner {
  width: min(calc(100% - 48px), 820px);
  text-align: center;
}

.mlh-intro__text {
  max-width: 760px;
  margin: 0 auto 12px;

  color: var(--mlh-grey-600);

  font-size: 0.98rem;
  line-height: 1.83;
}


/* ---------------------------------------------------------
   7. DRIE HOOFDKAARTEN
   --------------------------------------------------------- */

.mlh-choices {
  padding: 80px 0 88px;
  background: var(--mlh-cream);
}

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

.mlh-card {
  min-width: 0;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(41, 72, 62, 0.09);
  border-radius: var(--mlh-radius-md);

  background: var(--mlh-white);
  box-shadow: var(--mlh-shadow-xs);

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.mlh-card:hover {
  transform: translateY(-5px);

  border-color: rgba(41, 72, 62, 0.14);
  box-shadow: var(--mlh-shadow-md);
}

.mlh-card__image-link {
  display: block;
  overflow: hidden;
}

.mlh-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;

  object-fit: cover;

  transition: transform 550ms ease;
}

.mlh-card:hover .mlh-card__image {
  transform: scale(1.035);
}

.mlh-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;

  padding: 25px 24px 27px;
}

.mlh-card__label {
  margin: 0 0 8px;

  color: var(--mlh-green-700);

  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.mlh-card__title {
  margin: 0;

  color: var(--mlh-green-900);

  font-family: "Cinzel Decorative", Georgia, serif;
  font-size: clamp(1.38rem, 2vw, 1.82rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.17;
}

.mlh-card__text {
  margin: 14px 0 20px;

  color: var(--mlh-grey-600);

  font-size: 0.88rem;
  line-height: 1.68;
}

.mlh-card .mlh-text-link {
  margin-top: auto;
}


/* ---------------------------------------------------------
   8. UNIEKE VERKOOPWIJZE
   --------------------------------------------------------- */

.mlh-feature {
  padding: 84px 0;
}

.mlh-feature--green {
  background:
    linear-gradient(
      135deg,
      var(--mlh-green-900) 0%,
      var(--mlh-green-950) 100%
    );

  color: rgba(255, 255, 255, 0.82);
}

.mlh-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(44px, 6.8vw, 84px);

  align-items: center;
}

.mlh-feature__media {
  position: relative;
}

.mlh-feature__image {
  width: 100%;
  aspect-ratio: 4 / 3;

  border-radius: var(--mlh-radius-md);

  object-fit: cover;

  box-shadow: var(--mlh-shadow-dark);
}

.mlh-feature__badge {
  position: absolute;
  right: -14px;
  bottom: -18px;

  width: 124px;
  min-height: 124px;

  display: flex;
  padding: 16px;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  border: 4px solid var(--mlh-green-900);
  border-radius: 50%;

  background: var(--mlh-gold);
  color: var(--mlh-green-950);

  text-align: center;
}

.mlh-feature__badge strong {
  font-family: "Cinzel Decorative", Georgia, serif;
  font-size: 1.95rem;
  font-weight: 400;
  line-height: 1;
}

.mlh-feature__badge span {
  margin-top: 6px;

  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mlh-feature__content > p:not(.mlh-eyebrow) {
  margin: 20px 0;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.94rem;
  line-height: 1.8;
}

.mlh-checklist {
  display: grid;
  gap: 10px;

  margin: 23px 0 29px;
  padding: 0;

  list-style: none;
}

.mlh-checklist li {
  position: relative;

  margin: 0;
  padding-left: 27px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 0.88rem;
  line-height: 1.55;

  list-style: none;
}

.mlh-checklist li::before {
  position: absolute;
  top: 0;
  left: 0;

  color: var(--mlh-gold);

  content: "✓";
  font-weight: 400;
}


/* ---------------------------------------------------------
   9. ALGEMENE CARROUSEL
   --------------------------------------------------------- */

.mlh-carousel-header {
  display: flex;
  gap: 35px;

  margin-bottom: 34px;

  align-items: flex-end;
  justify-content: space-between;
}

.mlh-carousel-header__content {
  width: min(760px, 100%);
}

.mlh-carousel-controls {
  display: flex;
  gap: 9px;

  flex: 0 0 auto;
}

.mlh-carousel-button {
  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid var(--mlh-green-900);
  border-radius: 50%;

  background: transparent;
  color: var(--mlh-green-900);

  cursor: pointer;

  font-size: 1rem;
  line-height: 1;

  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.mlh-carousel-button:hover:not(:disabled) {
  transform: translateY(-2px);

  background: var(--mlh-green-900);
  color: var(--mlh-white);
}

.mlh-carousel-button:disabled {
  border-color: var(--mlh-grey-200);
  color: var(--mlh-grey-400);

  cursor: default;
  opacity: 0.5;
}

.mlh-carousel-track {
  display: grid;
  grid-auto-flow: column;
  gap: 22px;

  overflow-x: auto;
  overscroll-behavior-inline: contain;

  padding: 4px 2px 22px;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.mlh-carousel-track::-webkit-scrollbar {
  display: none;
}

.mlh-carousel-footer {
  margin-top: 22px;
  text-align: center;
}


/* ---------------------------------------------------------
   10. COCKTAILCARROUSEL
   --------------------------------------------------------- */

.mlh-cocktails {
  padding: 84px 0 88px;
  background: var(--mlh-white);
}

.mlh-cocktail-carousel {
  grid-auto-columns: calc((100% - 44px) / 3);
}

.mlh-cocktail-card {
  min-width: 0;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(41, 72, 62, 0.09);
  border-radius: var(--mlh-radius-md);

  background: var(--mlh-white);
  box-shadow: var(--mlh-shadow-xs);

  scroll-snap-align: start;

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.mlh-cocktail-card:hover {
  transform: translateY(-4px);

  border-color: rgba(41, 72, 62, 0.15);
  box-shadow: var(--mlh-shadow-md);
}

.mlh-cocktail-card__image-link {
  display: block;
  overflow: hidden;

  background: var(--mlh-grey-100);
}

.mlh-cocktail-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;

  object-fit: cover;

  transition: transform 550ms ease;
}

.mlh-cocktail-card:hover .mlh-cocktail-card__image {
  transform: scale(1.035);
}

.mlh-cocktail-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;

  padding: 24px 23px 26px;
}

.mlh-cocktail-card__title {
  margin: 0;

  color: var(--mlh-green-900);

  font-family: "Cinzel Decorative", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.mlh-cocktail-card__text {
  margin: 13px 0 19px;

  color: var(--mlh-grey-600);

  font-size: 0.86rem;
  line-height: 1.66;
}

.mlh-cocktail-card .mlh-text-link {
  margin-top: auto;
}


/* ---------------------------------------------------------
   11. REVIEWS-CARROUSEL
   --------------------------------------------------------- */

.mlh-reviews {
  padding: 80px 0 86px;
  background: var(--mlh-cream);
}

.mlh-review-carousel {
  grid-auto-columns: calc((100% - 44px) / 3);
}

.mlh-review {
  min-width: 0;
  min-height: 245px;

  display: flex;
  flex-direction: column;

  margin: 0;
  padding: 28px 27px;

  border: 1px solid rgba(41, 72, 62, 0.09);
  border-radius: var(--mlh-radius-md);

  background: var(--mlh-white);
  box-shadow: var(--mlh-shadow-xs);

  scroll-snap-align: start;
}

.mlh-review__stars {
  margin-bottom: 18px;

  color: var(--mlh-gold-dark);

  font-size: 0.88rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.mlh-review__quote {
  margin: 0;

  color: var(--mlh-text);

  font-family: "Fauna One", Georgia, serif;
  font-size: 0.96rem;
  font-style: normal;
  line-height: 1.75;
}

.mlh-review__author {
  margin: auto 0 0;
  padding-top: 20px;

  color: var(--mlh-green-700);

  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   12. WINKEL IN LEIDEN
   --------------------------------------------------------- */

.mlh-store {
  padding: 82px 0;

  background:
    linear-gradient(
      135deg,
      var(--mlh-green-950) 0%,
      var(--mlh-green-900) 100%
    );

  color: rgba(255, 255, 255, 0.82);
}

.mlh-store__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(45px, 7vw, 86px);

  align-items: center;
}

.mlh-store__media {
  min-width: 0;
}

.mlh-store__image {
  width: 100%;
  max-height: 405px;
  aspect-ratio: 4 / 3;

  border-radius: var(--mlh-radius-md);

  object-fit: cover;

  box-shadow: var(--mlh-shadow-dark);
}

.mlh-store__content {
  padding: 0;
}

.mlh-store__content > p:not(.mlh-eyebrow) {
  max-width: 620px;
  margin: 20px 0;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.94rem;
  line-height: 1.8;
}

.mlh-store__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px;

  margin: 27px 0 31px;
  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mlh-store__details p {
  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 0.83rem;
  line-height: 1.65;
}

.mlh-store__details strong {
  color: var(--mlh-white);
  font-weight: 400;
}


/* ---------------------------------------------------------
   13. AFSLUITENDE CALL-TO-ACTION
   --------------------------------------------------------- */

.mlh-final-cta {
  padding: 76px 0 82px;
  background: var(--mlh-white);
}

.mlh-final-cta__inner {
  width: min(calc(100% - 48px), 790px);
  text-align: center;
}

.mlh-final-cta__text {
  max-width: 620px;
  margin: 18px auto 26px;

  color: var(--mlh-grey-600);

  font-size: 0.96rem;
  line-height: 1.75;
}


/* ---------------------------------------------------------
   14. TABLET
   --------------------------------------------------------- */

@media (max-width: 980px) {
  .mlh-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mlh-benefit:nth-child(2) {
    border-right: 0;
  }

  .mlh-benefit:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mlh-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mlh-card:last-child {
    grid-column: 1 / -1;

    width: calc(50% - 12px);
    justify-self: center;
  }

  .mlh-feature__grid {
    gap: 44px;
  }

  .mlh-cocktail-carousel,
  .mlh-review-carousel {
    grid-auto-columns: calc((100% - 22px) / 2);
  }

  .mlh-store__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .mlh-store__media {
    width: min(680px, 100%);
  }

  .mlh-store__image {
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .mlh-store__content {
    width: min(720px, 100%);
  }
}


/* ---------------------------------------------------------
   15. MOBIEL
   --------------------------------------------------------- */

@media (max-width: 700px) {
  .mlh-container {
    width: min(calc(100% - 28px), var(--mlh-container));
  }

  .mlh-section-header {
    margin-bottom: 29px;
  }

  .mlh-section-title {
    font-size: clamp(1.72rem, 8.5vw, 2.28rem);
    line-height: 1.1;
  }

  .mlh-section-intro {
    margin-top: 14px;

    font-size: 0.9rem;
    line-height: 1.68;
  }

  .mlh-eyebrow {
    margin-bottom: 9px;

    font-size: 0.62rem;
    letter-spacing: 0.15em;
  }

  .mlh-button {
    min-height: 45px;
    padding: 11px 17px;

    font-size: 0.7rem;
  }

  .mlh-hero {
    min-height: 645px;

    align-items: flex-end;

    background-position: 58% center;
  }

  .mlh-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(19, 42, 34, 0.16) 0%,
        rgba(20, 44, 36, 0.42) 30%,
        rgba(20, 44, 36, 0.88) 68%,
        rgba(20, 44, 36, 0.97) 100%
      );
  }

  .mlh-hero__inner {
    padding-block: 98px 46px;
  }

  .mlh-hero__logo {
    width: 265px;

    margin: -44px 0 -33px -48px;
  }

  .mlh-hero__content {
    width: 100%;
  }

  .mlh-hero__title {
    max-width: 350px;

    font-size: clamp(2.05rem, 9.6vw, 2.8rem);
    line-height: 1.04;
  }

  .mlh-hero__text {
    max-width: 390px;
    margin: 17px 0 23px;

    font-size: 0.89rem;
    line-height: 1.65;
  }

  .mlh-hero .mlh-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mlh-hero .mlh-button {
    width: 100%;
  }

  .mlh-benefits__grid {
    grid-template-columns: 1fr;
  }

  .mlh-benefit {
    grid-template-columns: 25px 1fr;
    gap: 10px;

    padding: 15px 4px;

    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mlh-benefit:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mlh-benefit:last-child {
    border-bottom: 0;
  }

  .mlh-benefit strong {
    margin-bottom: 3px;

    font-size: 0.81rem;
  }

  .mlh-benefit div > span {
    font-size: 0.69rem;
  }

  .mlh-intro {
    padding: 58px 0 55px;
  }

  .mlh-intro__inner,
  .mlh-final-cta__inner {
    width: min(calc(100% - 28px), 790px);
  }

  .mlh-intro__text {
    font-size: 0.88rem;
    line-height: 1.72;
  }

  .mlh-divider {
    margin: 20px auto 22px;
  }

  .mlh-choices {
    padding: 58px 0 63px;
  }

  .mlh-card-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .mlh-card:last-child {
    grid-column: auto;

    width: auto;
  }

  .mlh-card__content {
    padding: 21px 20px 23px;
  }

  .mlh-card__label {
    font-size: 0.61rem;
  }

  .mlh-card__title {
    font-size: 1.47rem;
  }

  .mlh-card__text {
    margin: 12px 0 17px;

    font-size: 0.84rem;
    line-height: 1.64;
  }

  .mlh-feature {
    padding: 60px 0 64px;
  }

  .mlh-feature__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mlh-feature__badge {
    right: 10px;
    bottom: -31px;

    width: 105px;
    min-height: 105px;

    padding: 12px;
  }

  .mlh-feature__badge strong {
    font-size: 1.65rem;
  }

  .mlh-feature__badge span {
    font-size: 0.49rem;
  }

  .mlh-feature__content {
    padding-top: 5px;
  }

  .mlh-feature__content > p:not(.mlh-eyebrow) {
    margin: 17px 0;

    font-size: 0.87rem;
    line-height: 1.7;
  }

  .mlh-checklist {
    gap: 9px;

    margin: 20px 0 25px;
  }

  .mlh-checklist li {
    padding-left: 25px;

    font-size: 0.83rem;
  }

  .mlh-carousel-header {
    gap: 18px;

    margin-bottom: 26px;

    align-items: flex-start;
    flex-direction: column;
  }

  .mlh-carousel-controls {
    align-self: flex-end;
  }

  .mlh-carousel-button {
    width: 41px;
    height: 41px;
  }

  .mlh-cocktails {
    padding: 60px 0 64px;
  }

  .mlh-cocktail-carousel,
  .mlh-review-carousel {
    grid-auto-columns: 86%;
    gap: 15px;
  }

  .mlh-cocktail-card__content {
    padding: 21px 20px 23px;
  }

  .mlh-cocktail-card__title {
    font-size: 1.36rem;
  }

  .mlh-cocktail-card__text {
    font-size: 0.83rem;
  }

  .mlh-carousel-footer {
    margin-top: 17px;
  }

  .mlh-reviews {
    padding: 58px 0 63px;
  }

  .mlh-review {
    min-height: 230px;
    padding: 24px 21px;
  }

  .mlh-review__quote {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .mlh-store {
    padding: 0;
  }

  .mlh-store .mlh-container {
    width: 100%;
  }

  .mlh-store__grid {
    gap: 0;
  }

  .mlh-store__media {
    width: 100%;
  }

  .mlh-store__image {
    width: 100%;
    aspect-ratio: 4 / 3;

    border-radius: 0;

    box-shadow: none;
  }

  .mlh-store__content {
    width: 100%;
    padding: 47px 20px 55px;
  }

  .mlh-store__content > p:not(.mlh-eyebrow) {
    margin: 17px 0;

    font-size: 0.87rem;
    line-height: 1.72;
  }

  .mlh-store__details {
    grid-template-columns: 1fr;
    gap: 15px;

    margin: 23px 0 27px;
  }

  .mlh-store .mlh-button {
    width: 100%;
  }

  .mlh-final-cta {
    padding: 58px 0 64px;
  }

  .mlh-final-cta__text {
    margin: 16px auto 23px;

    font-size: 0.88rem;
    line-height: 1.7;
  }

  .mlh-final-cta .mlh-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mlh-final-cta .mlh-button {
    width: 100%;
  }
}


/* ---------------------------------------------------------
   16. ZEER KLEINE MOBIELE SCHERMEN
   --------------------------------------------------------- */

@media (max-width: 380px) {
  .mlh-hero__logo {
    width: 240px;
    margin-left: -43px;
  }

  .mlh-hero__title {
    font-size: 1.95rem;
  }

  .mlh-cocktail-carousel,
  .mlh-review-carousel {
    grid-auto-columns: 91%;
  }
}


/* ---------------------------------------------------------
   17. BEWEGINGSVOORKEUR
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .mlh-home *,
  .mlh-home *::before,
  .mlh-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}