@charset "UTF-8";
/* Landingspagina's
   ==========================================================================

   Styling voor de twee commerciële landingspagina's (Vloer- & wandtegels en
   Complete badkamers). De typografie en kleuren komen uit het thema: Work
   Sans met de bestaande --color-* variabelen. De layout, spacing en states
   volgen de design handoff.

   Bron voor assets/css/landing.css - compileren met:
   sass assets/css/scss/layout/landing/_landing.scss assets/css/landing.css

   ========================================================================== */
:root {
  /** Kleuren uit het thema, met een terugval **/
  --lp-navy: var(--color-2, #00287a);
  --lp-navy-dark: var(--color-0, #00184a);
  --lp-accent: var(--color-1, #fe6146);
  --lp-light: var(--color-5, #f5f5f5);
  --lp-white: var(--color-3, #fff);
  /** Afgeleide tinten **/
  --lp-accent-hover: #e0442c;
  --lp-accent-light: #ff8a66;
  --lp-navy-card: #0f2a63;
  --lp-navy-card-border: #1c3b7e;
  --lp-navy-muted: #12275e;
  /** Neutraal **/
  --lp-border: #dfe4ee;
  --lp-placeholder: #eaeef6;
  --lp-body: #5a6376;
  --lp-body-strong: #414a5c;
  --lp-subtle: #7b8496;
  /** Op donkere vlakken **/
  --lp-on-dark: #edf1f8;
  --lp-on-dark-soft: #dde4f1;
  --lp-on-dark-muted: #c7d0e2;
  --lp-on-dark-dim: #aeb9cf;
  --lp-on-dark-link: #9fb4e4;
  /** Signaal **/
  --lp-star: #ffb020;
  --lp-stock: #0a7a44;
  /** Vorm **/
  --lp-radius: 2px;
  --lp-section: 76px;
  --lp-header: 140px;
}

html {
  scroll-behavior: smooth;
}

/* Secties
   ========================================================================== */
.lp-section {
  position: relative;
  padding: var(--lp-section) 0;
  scroll-margin-top: var(--lp-header);
}
.lp-section--light {
  background: var(--lp-light);
}
.lp-section--dark {
  background: var(--lp-navy-dark);
  color: var(--lp-on-dark);
}
.lp-section__head {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.lp-section__head-text {
  flex: 1 1 320px;
}

/* Typografie
   ========================================================================== */
.lp-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.8125rem;
  font-weight: var(--weight-1, 700);
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-navy);
}
.lp-eyebrow--accent {
  color: var(--lp-accent);
}

.lp-section--dark .lp-eyebrow--accent {
  color: var(--lp-accent-light);
}

.lp-title {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: var(--weight-1, 700);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--lp-navy);
  text-wrap: balance;
}
.lp-title--light {
  color: var(--lp-white);
}
.lp-title--center {
  text-align: center;
}
.lp-title--large {
  font-size: clamp(1.875rem, 4vw, 2.875rem);
}
.lp-title--small {
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
}

.lp-intro {
  max-width: 46em;
  margin-top: 14px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--lp-body);
}
.lp-intro--center {
  margin: 14px auto 0;
  text-align: center;
}

.lp-section--dark .lp-intro {
  color: var(--lp-on-dark-muted);
}

.lp-text {
  max-width: 40em;
  margin-top: 16px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--lp-body-strong);
}
.lp-text p {
  padding-bottom: 16px;
}
.lp-text :last-child {
  padding-bottom: 0;
}

.lp-disclaimer {
  margin-top: 16px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--lp-subtle);
}

.lp-link {
  margin-left: auto;
  font-size: 0.9375rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.lp-link:hover {
  border-bottom-color: var(--lp-accent);
  color: var(--lp-accent);
}

/* Knoppen
   ========================================================================== */
.lp-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.lp-buttons--center {
  justify-content: center;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: var(--lp-radius);
  font-size: 0.9375rem;
  font-weight: var(--weight-1, 700);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.lp-btn--primary {
  background: var(--lp-accent);
  color: var(--lp-white);
}
.lp-btn--primary:hover {
  background: var(--lp-accent-hover);
  color: var(--lp-white);
}
.lp-btn--white {
  background: var(--lp-white);
  color: var(--lp-navy-dark);
}
.lp-btn--white:hover {
  background: var(--lp-light);
  color: var(--lp-navy-dark);
}
.lp-btn--navy {
  background: var(--lp-navy);
  color: var(--lp-white);
}
.lp-btn--navy:hover {
  background: var(--lp-accent);
  color: var(--lp-white);
}
.lp-btn--outline {
  border-color: var(--lp-navy);
  color: var(--lp-navy);
}
.lp-btn--outline:hover {
  background: var(--lp-navy);
  color: var(--lp-white);
}
.lp-btn--ghost {
  gap: 10px;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--lp-white);
}
.lp-btn--ghost:hover {
  border-color: var(--lp-white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--lp-white);
}
.lp-btn--block {
  width: 100%;
  margin-top: 16px;
}
.lp-btn--raised {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

/* Checklists
   ========================================================================== */
.lp-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.lp-checks--light {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
  font-weight: var(--weight-1, 700);
  color: var(--lp-on-dark-muted);
}
.lp-checks--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 22px;
  margin-top: 24px;
  font-weight: var(--weight-1, 700);
  color: var(--lp-navy-dark);
}
.lp-checks__item {
  display: flex;
  gap: 9px;
}
.lp-checks__mark {
  color: var(--lp-accent);
  font-weight: var(--weight-1, 700);
}

.lp-checks--light .lp-checks__mark {
  color: var(--lp-on-dark-muted);
}

/* Sterren
   ========================================================================== */
.lp-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--lp-star);
  font-size: 0.9375rem;
  line-height: 1;
}
.lp-stars__star--off {
  opacity: 0.3;
}
.lp-stars--badge {
  font-size: 0.875rem;
}

/* Foto's
   ========================================================================== */
.lp-image--empty {
  width: 100%;
  height: 100%;
  background: var(--lp-placeholder);
}

/* USP-balk
   ========================================================================== */
.lp-marquee {
  overflow: hidden;
  background: var(--lp-navy-dark);
  color: var(--lp-on-dark);
  font-size: 0.8125rem;
  font-weight: var(--weight-1, 700);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.lp-marquee__track {
  display: flex;
  width: max-content;
  animation: lp-marquee 34s linear infinite;
}
.lp-marquee__group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 11px 22px;
}
.lp-marquee__separator {
  color: #8fa6dc;
}

@keyframes lp-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Hero
   ========================================================================== */
.lp-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 620px;
  overflow: hidden;
  scroll-margin-top: var(--lp-header);
}
.lp-hero__image {
  position: absolute;
  inset: 0;
  background: var(--lp-navy-dark);
}
.lp-hero__image-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 24, 74, 0.93) 0%, rgba(0, 24, 74, 0.66) 48%, rgba(0, 24, 74, 0.15) 100%);
}
.lp-hero > .container {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 68px;
}
.lp-hero__title {
  max-width: 17em;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: var(--weight-1, 700);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--lp-white);
  text-wrap: balance;
}
.lp-hero__text {
  max-width: 34em;
  margin-top: 18px;
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--lp-on-dark-soft);
  text-wrap: pretty;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-white);
}

/* Stijlen (selecteerbaar)
   ========================================================================== */
.lp-grid {
  display: grid;
}
.lp-grid--styles {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.lp-grid--deals {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.lp-grid--concepts {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.lp-grid--reviews {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}
.lp-grid--steps {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.lp-clear {
  margin-left: auto;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.90625rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-navy);
  text-decoration: underline;
  cursor: pointer;
}
.lp-clear:hover {
  color: var(--lp-accent);
}

.lp-style {
  position: relative;
  display: block;
  width: 100%;
  height: 250px;
  padding: 0;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: var(--lp-radius);
  background: var(--lp-placeholder);
  text-align: left;
  cursor: pointer;
}
.lp-style__image {
  position: absolute;
  inset: 0;
}
.lp-style__image-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-style__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 24, 74, 0) 40%, rgba(0, 24, 74, 0.78) 100%);
}
.lp-style__check {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-on-dark-dim);
}
.lp-style__body {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
}
.lp-style__name {
  display: block;
  font-size: 1.25rem;
  font-weight: var(--weight-1, 700);
  line-height: 1.2;
  color: var(--lp-white);
}
.lp-style__note {
  display: block;
  margin-top: 3px;
  font-size: 0.84375rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-on-dark-muted);
}
.lp-style:hover {
  border-color: var(--lp-border);
}
.lp-style[aria-pressed=true] {
  border-color: var(--lp-accent);
}
.lp-style[aria-pressed=true] .lp-style__overlay {
  background: linear-gradient(180deg, rgba(0, 40, 122, 0.35) 0%, rgba(0, 24, 74, 0.86) 100%);
}
.lp-style[aria-pressed=true] .lp-style__check {
  background: var(--lp-accent);
  color: var(--lp-white);
}

.lp-selection {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  padding: 24px 30px;
  border-radius: var(--lp-radius);
  background: var(--lp-navy-muted);
}
.lp-selection--active {
  background: var(--lp-navy);
}
.lp-selection__title {
  font-size: 1.1875rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-white);
}
.lp-selection__line {
  margin-top: 4px;
  font-size: 0.90625rem;
  font-weight: var(--weight-1, 700);
  line-height: 1.5;
  color: var(--lp-on-dark-muted);
}
.lp-selection__button {
  margin-left: auto;
}

/* Outletkaarten
   ========================================================================== */
.lp-deal {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-white);
}
.lp-deal:hover {
  border-color: var(--lp-navy);
}
.lp-deal__media {
  position: relative;
  height: 190px;
  background: var(--lp-placeholder);
}
.lp-deal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-deal__badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 12px;
  background: var(--lp-accent);
  font-size: 0.75rem;
  font-weight: var(--weight-1, 700);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lp-white);
}
.lp-deal__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px 22px;
}
.lp-deal__title {
  font-size: 1.125rem;
  font-weight: var(--weight-1, 700);
  line-height: 1.3;
  color: var(--lp-navy);
}
.lp-deal__spec {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--lp-body);
}
.lp-deal__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.lp-deal__price-now {
  font-size: 1.75rem;
  font-weight: var(--weight-1, 700);
  line-height: 1.1;
  color: var(--lp-navy);
}
.lp-deal__price-was {
  font-size: 0.875rem;
  color: var(--lp-subtle);
}
.lp-deal__unit {
  font-size: 0.8125rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-body);
}
.lp-deal__stock {
  font-size: 0.84375rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-stock);
}
.lp-deal__stock--out {
  color: var(--lp-subtle);
}

/* Google reviews
   ========================================================================== */
.lp-google {
  flex: none;
}

.lp-reviews__head {
  align-items: center;
  gap: 24px 40px;
  margin-bottom: 34px;
}
.lp-reviews__foot {
  margin-top: 30px;
  text-align: center;
}

.lp-score {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  padding: 18px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.08);
}
.lp-score__number {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 3rem;
  font-weight: var(--weight-1, 700);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--lp-white);
}
.lp-score__scale {
  font-size: 1.125rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-on-dark-dim);
}
.lp-score__meta {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.lp-score__count {
  margin-top: 6px;
  font-size: 0.84375rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-on-dark-dim);
}
.lp-score__link {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.8125rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-on-dark-link);
  text-decoration: none;
}
.lp-score__link:hover {
  color: var(--lp-white);
}

.lp-review {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px 26px 22px;
  border: 1px solid var(--lp-navy-card-border);
  border-radius: var(--lp-radius);
  background: var(--lp-navy-card);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.lp-review:hover {
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}
.lp-review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.lp-review__quote {
  position: relative;
  flex: 1;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}
.lp-review__quote::before {
  content: "“";
  position: absolute;
  top: -0.07em;
  left: 0;
  font-size: 2.25rem;
  font-weight: var(--weight-1, 700);
  line-height: 1;
  color: var(--lp-accent);
  pointer-events: none;
}
.lp-review__text {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  padding: 0;
  text-indent: 1.5em;
  font-size: 1.03125rem;
  line-height: 1.62;
  color: #e8edf7;
  text-wrap: pretty;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}
.lp-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.lp-review__author-text {
  min-width: 0;
}
.lp-review__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-accent);
  font-size: 0.9375rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-white);
  object-fit: cover;
}
.lp-review__avatar--photo {
  background: var(--lp-navy-muted);
}
.lp-review__name {
  display: block;
  overflow: hidden;
  font-size: 0.9375rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-white);
  white-space: nowrap;
  text-overflow: ellipsis;
}
.lp-review__meta {
  display: block;
  font-size: 0.8125rem;
  color: #93a0ba;
}
.lp-review__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 32px;
  height: 32px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.9375rem;
  color: var(--lp-on-dark-link);
  text-decoration: none;
}
.lp-review__link:hover {
  border-color: var(--lp-white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--lp-white);
}
.lp-review__link-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Showroom
   ========================================================================== */
.lp-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 44px;
  align-items: center;
}
.lp-split__media {
  position: relative;
  height: 470px;
  overflow: hidden;
  border-radius: var(--lp-radius);
  background: var(--lp-placeholder);
}
.lp-split__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--lp-border);
}
.lp-details__title {
  margin-bottom: 10px;
  font-size: 0.8125rem;
  font-weight: var(--weight-1, 700);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-subtle);
}
.lp-details__title--light {
  color: var(--lp-on-dark-link);
}
.lp-details__address {
  font-size: 0.96875rem;
  font-weight: var(--weight-1, 700);
  line-height: 1.6;
  color: var(--lp-navy-dark);
}
.lp-details__note {
  margin-top: 10px;
  font-size: 0.90625rem;
  color: var(--lp-body);
}

.lp-hours {
  font-size: 0.90625rem;
}
.lp-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 0;
  color: #2c3444;
}
.lp-hours__row--today {
  color: var(--lp-accent);
}
.lp-hours__day {
  font-weight: var(--weight-1, 700);
  text-transform: lowercase;
}
.lp-hours--light {
  max-width: 280px;
}
.lp-hours--light .lp-hours__row {
  color: var(--lp-on-dark-muted);
}
.lp-hours--light .lp-hours__row--today {
  color: var(--lp-white);
}

/* Stappen
   ========================================================================== */
.lp-step {
  padding: 28px 24px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-white);
}
.lp-step__number {
  margin-bottom: 14px;
  font-size: 2rem;
  font-weight: var(--weight-1, 700);
  line-height: 1;
  color: var(--lp-accent);
}
.lp-step__title {
  margin-bottom: 8px;
  font-size: 1.125rem;
  font-weight: var(--weight-1, 700);
  line-height: 1.3;
  color: var(--lp-navy);
}
.lp-step__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4c5566;
  text-wrap: pretty;
}

/* Alles onder één dak
   ========================================================================== */
.lp-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(345px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-white);
}

.lp-services__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 24px;
  background: var(--lp-white);
  box-shadow: 0 0 0 1px var(--lp-border);
}
.lp-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 52px;
  height: 52px;
  background: var(--lp-navy);
}
.lp-services__diamond {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--lp-white);
  transform: rotate(45deg);
}
.lp-services__title {
  margin-bottom: 5px;
  font-size: 1.125rem;
  font-weight: var(--weight-1, 700);
  line-height: 1.3;
  color: var(--lp-navy);
}
.lp-services__note {
  font-size: 0.90625rem;
  line-height: 1.5;
  color: var(--lp-body);
}

/* Badkamerconcepten
   ========================================================================== */
.lp-concept {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-white);
}
.lp-concept__media {
  position: relative;
  height: 250px;
  background: var(--lp-placeholder);
}
.lp-concept__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-concept__badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 14px;
  background: var(--lp-navy);
  font-size: 0.75rem;
  font-weight: var(--weight-1, 700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-white);
}
.lp-concept__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px;
}
.lp-concept__title {
  font-size: 1.375rem;
  font-weight: var(--weight-1, 700);
  line-height: 1.25;
  color: var(--lp-navy);
}
.lp-concept__text {
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--lp-body);
}
.lp-concept__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--lp-border);
}
.lp-concept__price-label {
  font-size: 0.8125rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-body);
}
.lp-concept__price-amount {
  font-size: 1.625rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-navy);
}

.lp-concept__group {
  margin-top: 16px;
  font-size: 0.8125rem;
  font-weight: var(--weight-1, 700);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-subtle);
}
.lp-concept .lp-checks {
  gap: 5px;
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 0.90625rem;
  line-height: 1.45;
}

/* Afspraakblok
   ========================================================================== */
.lp-appointment__frame {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  overflow: hidden;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
}
.lp-appointment__intro {
  padding: 46px 42px;
  background: var(--lp-navy);
  color: var(--lp-white);
}
.lp-appointment__text {
  margin-top: 14px;
  font-size: 1.03125rem;
  line-height: 1.6;
  color: var(--lp-on-dark-muted);
}
.lp-appointment__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  font-size: 0.96875rem;
  font-weight: var(--weight-1, 700);
}
.lp-appointment__contact a {
  color: var(--lp-white);
  text-decoration: none;
}
.lp-appointment__contact a:hover {
  color: var(--lp-on-dark-link);
}
.lp-appointment__muted {
  color: var(--lp-on-dark-link);
}
.lp-appointment__hours {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--lp-navy-card-border);
}
.lp-appointment__form {
  padding: 46px 42px;
  background: var(--lp-white);
}
.lp-appointment__note {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--lp-subtle);
}

/* Formulier in de stijl van de pagina
   ========================================================================== */
.lp-appointment__form label,
.lp-appointment__form .gfield_label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84375rem;
  font-weight: var(--weight-1, 700);
  color: var(--lp-navy-dark);
}
.lp-appointment__form input[type=text],
.lp-appointment__form input[type=tel],
.lp-appointment__form input[type=email],
.lp-appointment__form input[type=date],
.lp-appointment__form input[type=number],
.lp-appointment__form select,
.lp-appointment__form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-light);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--lp-navy-dark);
}
.lp-appointment__form textarea {
  height: auto;
  min-height: 110px;
  resize: vertical;
}
.lp-appointment__form input:focus,
.lp-appointment__form select:focus,
.lp-appointment__form textarea:focus {
  border-color: var(--lp-navy);
}
.lp-appointment__form .gfield {
  margin-bottom: 16px;
}
.lp-appointment__form .gfield_error input,
.lp-appointment__form .gfield_error textarea,
.lp-appointment__form input[aria-invalid=true],
.lp-appointment__form textarea[aria-invalid=true] {
  border-color: var(--lp-accent);
}
.lp-appointment__form .validation_message,
.lp-appointment__form .gfield_validation_message {
  margin-top: 6px;
  font-size: 0.8125rem;
  color: var(--lp-accent);
}
.lp-appointment__form .gform_button,
.lp-appointment__form button[type=submit],
.lp-appointment__form input[type=submit] {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 15px 30px;
  border: none;
  border-radius: var(--lp-radius);
  background: var(--lp-accent);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: var(--weight-1, 700);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lp-white);
  cursor: pointer;
}
.lp-appointment__form .gform_button:hover,
.lp-appointment__form button[type=submit]:hover,
.lp-appointment__form input[type=submit]:hover {
  background: var(--lp-accent-hover);
}

/* Slot-CTA
   ========================================================================== */
.lp-cta {
  position: relative;
  overflow: hidden;
}
.lp-cta__image {
  position: absolute;
  inset: 0;
  background: var(--lp-navy-dark);
}
.lp-cta__image-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 24, 74, 0.78);
}
.lp-cta > .container {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 96px;
}
.lp-cta__holder {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.lp-cta__text {
  margin-top: 16px;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--lp-on-dark-soft);
}

/* Responsive
   ========================================================================== */
@media (max-width: 992px) {
  :root {
    --lp-section: 56px;
    --lp-header: 90px;
  }
  .lp-hero {
    min-height: 520px;
  }
  .lp-hero > .container {
    padding-top: 64px;
    padding-bottom: 48px;
  }
  .lp-hero__overlay {
    background: linear-gradient(180deg, rgba(0, 24, 74, 0.7) 0%, rgba(0, 24, 74, 0.92) 100%);
  }
  .lp-split__media {
    height: 340px;
  }
  .lp-appointment__intro,
  .lp-appointment__form {
    padding: 34px 26px;
  }
  .lp-cta > .container {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .lp-marquee__track {
    width: 100%;
    animation: none;
    white-space: normal;
  }
  .lp-marquee__group {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .lp-marquee__group[aria-hidden=true] {
    display: none;
  }
  .lp-marquee__group .lp-marquee__separator:last-child {
    display: none;
  }
  .lp-section__head {
    margin-bottom: 20px;
  }
  .lp-link,
  .lp-clear,
  .lp-selection__button,
  .lp-score {
    margin-left: 0;
  }
  .lp-score {
    width: 100%;
    padding: 16px 20px;
  }
  .lp-score__number {
    font-size: 2.5rem;
  }
  .lp-btn {
    width: 100%;
  }
  .lp-selection {
    padding: 20px;
  }
  .lp-split {
    gap: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .lp-marquee__track {
    animation: none;
  }
}
