/* ==========================================================================
   Photoboothhuren.com — Photobooth zuil
   Werkkopie / design reference. Niet publiceren.
   ========================================================================== */

@import url("fonts.css");

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --dark: #1e1810;
  --yellow: #f9c349;
  --yellow-hover: #ffb100;
  --cream: #f8f7f3;
  --white: #ffffff;
  --grey-100: #f1f2f3;
  --grey-line: #e4e4e4;
  --muted: #8f887f;
  --text: #333333;

  --font-heading: "Poppins", sans-serif;
  --font-alt: "Open Sans", sans-serif;
  --font-body: -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;

  --container: 1440px;
  --radius-sm: 3px;
  --radius: 10px;
  --radius-md: 16px;
  --radius-lg: 32px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--yellow);
  text-decoration: none;
}

a:hover {
  color: var(--yellow-hover);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
}

h1 {
  font-size: 48px;
  line-height: 1;
}

h2 {
  font-size: 34px;
  line-height: 1.08;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 48px);
  margin-inline: auto;
  padding-inline: 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 15px 26px 15px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--dark);
  text-align: center;
  background: var(--yellow);
  border: 0;
  border-radius: var(--radius-sm);
  min-height: 48px;
  cursor: pointer;
  transition: gap 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn::after {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"/></svg>') center/contain no-repeat;
  transform: rotate(-90deg);
}

.btn:hover {
  color: var(--dark);
  gap: 14px;
  background: var(--yellow-hover);
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn--outline {
  color: var(--dark);
  background: transparent;
  border: 1px solid var(--dark);
}

.btn--outline:hover {
  color: var(--dark);
  background: var(--yellow);
  border-color: var(--yellow);
}

/* --------------------------------------------------------------------------
   4. Check / icon lists
   -------------------------------------------------------------------------- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 24px;
}

.checklist li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
  background-color: var(--yellow);
  -webkit-mask: var(--check) center / contain no-repeat;
  mask: var(--check) center / contain no-repeat;
}

:root {
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E"); /* @kind other */
}

/* --------------------------------------------------------------------------
   5. Topbar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--dark);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  height: 44px;
  padding-inline: 50px;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--white);
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar svg {
  width: 15px;
  height: 15px;
  fill: var(--yellow);
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--dark);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100px;
  padding-inline: 50px;
}

.header__logo img {
  width: 201px;
  height: auto;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--yellow);
}

.nav__caret {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  z-index: 10;
  min-width: 230px;
  padding: 8px 0;
  background: var(--dark);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  color: var(--white);
}

.nav__dropdown a:hover {
  color: var(--dark);
  background: var(--yellow);
}

.header__cta {
  width: auto;
  padding: 12px 28px;
}

.header__toggle {
  display: none;
  padding: 8px;
  color: var(--white);
  background: none;
  border: 0;
  cursor: pointer;
}

.header__toggle svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  padding-top: 96px;
}

.hero__inner {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.hero__media {
  width: 47.5%;
  padding: 10px;
}

.hero__body {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 50%;
}

.hero__intro {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
}

.hero__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
}

.rating__stars {
  display: flex;
  gap: 2px;
}

.rating__stars svg {
  width: 22px;
  height: 22px;
  fill: var(--yellow);
}

.rating__score {
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.rating__meta {
  color: var(--text);
}

.hero__text p {
  margin-bottom: 1.5em;
}

.hero__buy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.price-row__amount {
  font-size: 24px;
  line-height: 1;
  color: var(--dark);
}

.price-row__note {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text);
}

.phone-line svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   8. Carousel
   -------------------------------------------------------------------------- */
.carousel {
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel__track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel__slide {
  flex: 0 0 100%;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: none;
  border: 0;
  transform: translateY(-50%);
  cursor: pointer;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.carousel__arrow svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.carousel__arrow--prev {
  left: -6px;
}

.carousel__arrow--next {
  right: -6px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #d0d0d0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.carousel__dot[aria-current="true"] {
  background: var(--dark);
}

/* --------------------------------------------------------------------------
   9. Features / tabs
   -------------------------------------------------------------------------- */
.features {
  padding-top: 96px;
}

.features__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features h2 {
  text-align: center;
}

.tabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
}

.tabs__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tabs__btn {
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark);
  text-align: left;
  background: var(--grey-100);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.tabs__btn:hover {
  background: #e7e9ea;
}

.tabs__btn[aria-selected="true"] {
  background: var(--yellow);
}

.tabs__panels {
  padding: 10px;
}

.tabs__panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 320px;
}

.tabs__panel[data-active="true"] {
  display: grid;
}

.tabs__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tabs__copy h3 {
  font-size: 24px;
}

.tabs__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   10. Brands
   -------------------------------------------------------------------------- */
.brands {
  padding-top: 96px;
}

.brands__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 96px;
  margin-bottom: 20px;
}

.brands__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}

.brands__link {
  font-size: 16px;
  color: var(--dark);
}

.brands__link:hover {
  color: var(--yellow-hover);
}

.brands__strip {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.brands__strip img {
  flex: 0 0 auto;
  width: 153px;
  height: 153px;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   11. Info card (Over de zuil)
   -------------------------------------------------------------------------- */
.info {
  position: relative;
  margin-top: 96px;
  padding: 48px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.info__badge {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 60px;
}

.info__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.info__row + .info__row {
  margin-top: 96px;
}

.info__row--reverse .info__media {
  order: -1;
}

.info__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   12. Reviews
   -------------------------------------------------------------------------- */
.reviews {
  padding-top: 96px;
}

.reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.reviews__rating {
  font-family: var(--font-alt);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
}

.reviews__stars {
  display: flex;
  gap: 3px;
}

.reviews__stars svg {
  width: 20px;
  height: 20px;
  fill: #fbbc04;
}

.reviews__meta {
  font-size: 14px;
  color: var(--muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
}

.review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.review__source {
  font-size: 12px;
  color: var(--muted);
}

.review__stars {
  display: flex;
  gap: 2px;
}

.review__stars svg {
  width: 15px;
  height: 15px;
  fill: #fbbc04;
}

.review__text {
  font-size: 14px;
  line-height: 22px;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   13. Aanbod
   -------------------------------------------------------------------------- */
.offer {
  padding-top: 96px;
}

.offer__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
}

.offer-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.offer-card h3 {
  font-size: 24px;
}

.offer-card__list {
  flex: 1;
}

.offer-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.offer-card__amount {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
}

.offer-card__vat {
  font-size: 16px;
  color: var(--text);
}

.offer-card__note {
  font-size: 14px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   14. Offerte / form
   -------------------------------------------------------------------------- */
.quote {
  padding-top: 96px;
}

.quote__inner {
  display: flex;
  gap: 45px;
  align-items: stretch;
  padding: 10px;
}

.quote__form {
  flex: 1 1 auto;
  padding: 40px;
  background: var(--cream);
  border-radius: var(--radius);
}

.quote__aside {
  flex: 0 0 425px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
}

.quote__intro {
  margin-bottom: 30px;
}

.quote__intro h2 {
  margin-bottom: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #d5d5d5;
  border-radius: var(--radius-sm);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--yellow);
  outline: 2px solid rgba(249, 195, 73, 0.35);
  outline-offset: 1px;
}

.consent {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-column: 1 / -1;
}

.consent label {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--yellow);
}

.aside-block {
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-line);
}

.aside-block:last-child {
  border-bottom: 0;
}

.aside-block__label {
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
}

.aside-block a {
  font-size: 18px;
  color: var(--dark);
}

.aside-block a:hover {
  color: var(--yellow-hover);
}

.usp {
  display: flex;
  gap: 14px;
  padding: 14px 0;
}

.usp__icon {
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 50%;
}

.usp__icon svg {
  width: 18px;
  height: 18px;
  fill: var(--dark);
}

.usp__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
}

.usp__list li {
  font-size: 15px;
  line-height: 24px;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq {
  padding-top: 96px;
}

.faq__card {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: 48px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.faq h2 {
  margin-bottom: 20px;
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  list-style: none;
  cursor: pointer;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  content: "";
  background-color: var(--dark);
  transition: transform 0.2s ease;
  -webkit-mask: var(--chevron) center / contain no-repeat;
  mask: var(--chevron) center / contain no-repeat;
}

.faq__item[open] summary::after {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 24px;
}

:root {
  --chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E"); /* @kind other */
}

/* --------------------------------------------------------------------------
   16. Other booths grid
   -------------------------------------------------------------------------- */
.others {
  padding-top: 121px;
}

.others__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.others__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.booth-card {
  display: flex;
  flex-direction: column;
  padding: 19px 16px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 14px rgba(30, 24, 16, 0.08);
}

.booth-card__media img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  border-radius: var(--radius);
}

.booth-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.booth-card__body h3 {
  font-size: 22px;
}

.booth-card__price {
  margin-top: auto;
}

.booth-card__from {
  font-size: 15px;
  color: var(--text);
}

.booth-card__amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.booth-card__amount span {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
}

.booth-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.footer {
  margin-top: 97px;
  color: var(--white);
  background: var(--dark);
}

.footer__inner {
  padding: 50px 50px 0;
}

.footer__top {
  display: flex;
  gap: 100px;
  padding-bottom: 50px;
}

.footer__brand {
  flex: 0 0 236px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__brand img {
  width: 236px;
}

.footer__brand p {
  font-size: 15px;
  line-height: 24px;
  color: #d8d4cd;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--dark);
  background: var(--yellow);
  border-radius: 50%;
}

.socials a:hover {
  background: var(--yellow-hover);
}

.socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer__cols {
  display: flex;
  flex: 1;
  gap: 45px;
}

.footer__col {
  flex: 1 1 251px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__col h4 {
  font-family: var(--font-alt);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__list a,
.footer__list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 22px;
  color: #d8d4cd;
}

.footer__list a:hover {
  color: var(--yellow);
}

.footer__bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0 24px;
  font-size: 14px;
  color: #d8d4cd;
}

.footer__bottom .divider {
  width: 12px;
  height: 1px;
  background: #6b6459;
}

.footer__bottom a {
  color: var(--yellow);
}

/* --------------------------------------------------------------------------
   18. Mobile sticky bar
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 70;
  display: none;
  width: 100%;
  background: var(--dark);
}

.mobile-bar a {
  flex: 1;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
}

.mobile-bar a + a {
  color: var(--dark);
  background: var(--yellow);
}

.mobile-bar svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .nav__list {
    gap: 18px;
  }

  .nav__link {
    font-size: 15px;
  }

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

  .quote__inner {
    flex-direction: column;
  }

  .quote__form,
  .quote__aside {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .topbar__inner,
  .header__inner,
  .footer__inner,
  .hero,
  .features,
  .brands,
  .reviews,
  .offer,
  .quote,
  .faq,
  .others {
    padding-inline: 30px;
  }

  .info {
    width: auto;
    margin-inline: 30px;
  }

  .header__toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    padding: 12px 30px 24px;
    background: var(--dark);
  }

  .nav[data-open="true"] {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__link {
    padding: 12px 0;
  }

  .nav__dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    transform: none;
  }

  .header__cta {
    display: none;
  }

  .hero__inner {
    flex-direction: column;
  }

  .hero__media,
  .hero__body {
    width: 100%;
  }

  .tabs {
    grid-template-columns: 1fr;
  }

  .tabs__panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__bottom {
    padding-bottom: 80px;
  }

  .mobile-bar {
    display: flex;
  }

  body {
    overflow-x: hidden;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 34px;
  }

  /* "Caravan photobooth huren" schaalt mee zodat het op één regel past
     zonder buiten beeld te lopen op smalle telefoons. */
  .hero__inner--split h1 {
    font-size: clamp(20px, 6.2vw, 26px);
    text-wrap: balance;
  }

  h2 {
    font-size: 26px;
  }

  .topbar__inner {
    justify-content: center;
    gap: 14px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .topbar a {
    font-size: 13px;
  }

  .header__inner {
    height: 76px;
    padding-inline: 16px;
  }

  .header__logo img {
    width: 160px;
  }

  .hero,
  .features,
  .brands,
  .reviews,
  .offer,
  .quote,
  .faq,
  .others {
    padding-inline: 16px;
  }

  .hero {
    padding-top: 40px;
  }

  .rating {
    flex-wrap: wrap;
    gap: 8px 10px;
    height: auto;
  }

  .rating__meta {
    font-size: 15px;
  }

  .features,
  .brands,
  .reviews,
  .offer,
  .quote,
  .faq {
    padding-top: 56px;
  }

  .others {
    padding-top: 56px;
  }

  .info {
    width: auto;
    margin-inline: 16px;
    margin-top: 56px;
    padding: 24px;
    border-radius: 20px;
  }

  .info__row,
  .info__row--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info__row--reverse .info__media {
    order: 0;
  }

  .info__row + .info__row {
    margin-top: 48px;
  }

  .info__badge {
    display: none;
  }

  .brands__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .reviews__grid,
  .offer__grid,
  .others__grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quote__inner {
    padding: 0;
  }

  .quote__form {
    padding: 24px;
  }

  .faq__card {
    padding: 24px;
    border-radius: 20px;
  }

  .footer__inner {
    padding: 40px 16px 0;
  }

  .footer__cols {
    flex-direction: column;
    gap: 32px;
  }

  .footer__bottom {
    flex-wrap: wrap;
  }
}

/* --------------------------------------------------------------------------
   Hero galerij (hoofdfoto met miniaturen eronder)
   -------------------------------------------------------------------------- */
.hero__inner--split{align-items:center;gap:96px}
.hero__inner--split .hero__body{width:47.5%;justify-content:center;gap:24px}
.hero__inner--split .hero__media{width:52.5%;padding:0}
.hero__eyebrow{font-family:var(--font-heading);font-size:13px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);margin:0 0 10px}
.hero__actions--row{flex-direction:row;align-items:center;gap:20px;flex-wrap:wrap}
.hero__actions--row .btn{flex:0 0 auto;width:auto}
.gallery{display:flex;flex-direction:column;gap:12px}
.gallery__main{position:relative;overflow:hidden;border-radius:var(--radius-md);background:var(--grey-100);aspect-ratio:4/3}
.gallery__main img{width:100%;height:100%;object-fit:cover;display:block}
.gallery__badge{position:absolute;left:14px;top:14px;display:flex;align-items:center;gap:8px;padding:7px 12px;border-radius:999px;background:rgba(30,24,16,.72);color:#fff;font-family:var(--font-heading);font-size:13px;font-weight:600}
.gallery__badge i{width:7px;height:7px;border-radius:50%;background:var(--yellow)}
.gallery__count{position:absolute;right:14px;bottom:14px;padding:6px 11px;border-radius:999px;background:rgba(30,24,16,.72);color:#fff;font-family:var(--font-heading);font-size:13px;font-weight:600}
.gallery__thumbs{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin:0;padding:0;list-style:none}
.gallery__thumbs button{padding:0;border:0;background:none;cursor:pointer;display:block;width:100%;aspect-ratio:4/3;border-radius:var(--radius-md);overflow:hidden;outline:2px solid transparent;outline-offset:2px;transition:outline-color .15s ease,opacity .15s ease}
.gallery__thumbs button img{width:100%;height:100%;object-fit:cover;display:block}
.gallery__thumbs button:hover{opacity:.85}
.gallery__thumbs button[aria-current="true"]{outline-color:var(--yellow)}
.gallery__more{display:flex;align-items:center;justify-content:center;width:100%;aspect-ratio:4/3;border-radius:var(--radius-md);background:var(--grey-100);color:var(--dark);font-family:var(--font-heading);font-weight:700;font-size:14px;text-decoration:none}
.gallery__more:hover{background:var(--yellow)}

/* --------------------------------------------------------------------------
   Hero variant 19: 5:4 hoofdfoto, captie, galerijknop, statistiekenrij
   -------------------------------------------------------------------------- */
.gallery--tall .gallery__main{aspect-ratio:5/4}
.gallery__all{position:absolute;left:14px;bottom:14px;display:inline-flex;align-items:center;gap:8px;min-height:44px;padding:0 18px;border-radius:999px;background:var(--white);color:var(--dark);font-family:var(--font-heading);font-size:14px;font-weight:700;text-decoration:none;box-shadow:0 4px 14px rgba(30,24,16,.18)}
.gallery__all:hover{background:var(--yellow)}
.gallery__cap{display:flex;align-items:baseline;justify-content:space-between;gap:12px;font-size:13px;color:var(--muted)}
.gallery--limited .gallery__thumbs li:nth-child(n+6){display:none}
.hero__stats{display:flex;gap:34px;flex-wrap:wrap}
.hero__stats div{display:flex;flex-direction:column}
.hero__stats strong{font-family:var(--font-heading);font-weight:700;font-size:22px;line-height:1.15;color:var(--dark)}
.hero__stats span{font-size:13px;color:var(--muted)}

@media (max-width:1024px){
  .hero__inner--split{gap:28px;align-items:stretch}
  .hero__inner--split .hero__body,.hero__inner--split .hero__media{width:100%}
  .hero__inner--split .hero__body,.hero__inner--split .hero__intro{display:contents}
  .hero__inner--split .hero__head{order:0}
  .hero__inner--split .hero__media{order:1}
  .hero__inner--split .hero__text{order:2}
  .hero__inner--split .checklist{order:3}
  .hero__inner--split .hero__buy{order:4}
  .gallery__thumbs{gap:8px}
  .btn{min-height:48px;display:inline-flex;align-items:center;justify-content:center}
  .phone-line{min-height:44px;align-items:center}
  .gallery__all{min-height:44px}
}
@media (max-width:640px){
  body{overflow-x:hidden}
  .hero__stats{display:flex;flex-wrap:wrap;gap:8px}
  .hero__stats div{flex:1 1 auto;flex-direction:row;align-items:baseline;gap:8px;padding:11px 14px;background:var(--cream);border-radius:var(--radius-sm)}
  .hero__stats strong{font-size:19px}
  .hero__stats span{font-size:13px;line-height:1.3}
  .gallery--limited .gallery__thumbs li:nth-child(n+6){display:block}
  .gallery__thumbs{display:flex;grid-template-columns:none;gap:8px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding-bottom:4px;scrollbar-width:none}
  .gallery__thumbs::-webkit-scrollbar{display:none}
  .gallery__thumbs li{flex:0 0 30%;scroll-snap-align:start}
  .gallery__thumbs button{min-height:48px}
  .gallery__all{min-height:44px;font-size:13px;padding:0 14px}
  .phone-line{min-height:44px;align-items:center}
}

/* --------------------------------------------------------------------------
   Andere photobooths: horizontale scroller
   -------------------------------------------------------------------------- */
.others__head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;flex-wrap:wrap;margin-bottom:28px}
.others__head h2{margin:0}
.others__head p{margin:6px 0 0;color:var(--muted)}
.others__all{display:inline-flex;align-items:center;gap:8px;min-height:44px;font-family:var(--font-heading);font-weight:600;font-size:15px;color:var(--dark);text-decoration:none;border-bottom:2px solid var(--yellow)}
.others__all:hover{color:var(--yellow-hover)}
.scroller{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(300px,1fr);gap:20px;overflow-x:auto;padding-bottom:14px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
.scroller>*{scroll-snap-align:start}
.scroller::-webkit-scrollbar{height:8px}
.scroller::-webkit-scrollbar-track{background:var(--grey-100);border-radius:99px}
.scroller::-webkit-scrollbar-thumb{background:var(--grey-line);border-radius:99px}
.scroller::-webkit-scrollbar-thumb:hover{background:var(--muted)}
.scroller-hint{display:flex;align-items:center;gap:8px;margin:14px 0 0;font-size:13px;color:var(--muted)}
.ca{display:flex;flex-direction:column;background:var(--white);border:1px solid var(--grey-line);border-radius:var(--radius);overflow:hidden;text-decoration:none;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.ca:hover{transform:translateY(-3px);box-shadow:0 14px 30px rgba(30,24,16,.12);border-color:var(--yellow)}
.ca__media{display:block;aspect-ratio:4/3;background:var(--grey-100);overflow:hidden}
.ca__media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease}
.ca:hover .ca__media img{transform:scale(1.04)}
.ca__body{display:flex;flex-direction:column;gap:8px;padding:20px}
.ca__name{font-family:var(--font-heading);font-size:18px;font-weight:700;color:var(--dark)}
.ca__usp{font-size:14px;color:var(--muted);line-height:1.5}
.ca__foot{display:flex;align-items:center;justify-content:space-between;gap:10px;min-height:44px;margin-top:auto;padding:14px 20px;border-top:1px solid var(--grey-line)}
.ca__price{font-family:var(--font-heading);font-size:17px;color:var(--dark)}
.ca__price em,.ca__price i{font-style:normal;display:block;font-size:12px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}
.ca__go{display:inline-flex;align-items:center;gap:6px;font-family:var(--font-heading);font-size:14px;font-weight:700;color:var(--dark);white-space:nowrap}
.ca:hover .ca__go{color:var(--yellow-hover)}
@media (max-width:640px){
  .others__head{margin-bottom:20px}
  .scroller{grid-auto-columns:minmax(78%,78%);gap:14px}
}

/* Galerij: scrollbare strook, +N tegel en video-item */
.gallery__thumbs{scroll-behavior:smooth}
.gallery--limited .gallery__thumbs li:nth-child(n+6){display:none}
.gallery--all .gallery__thumbs{display:flex;grid-template-columns:none;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding-bottom:6px}
.gallery--all .gallery__thumbs li{flex:0 0 calc(20% - 10px);scroll-snap-align:start}
.gallery__thumbs button{position:relative}
.gallery__thumb-more{position:absolute;inset:0;display:grid;place-items:center;background:rgba(30,24,16,.66);color:#fff;font-family:var(--font-heading);font-weight:700;font-size:17px}
.gallery__thumb-more:hover{background:rgba(30,24,16,.78)}
.gallery--all .gallery__thumb-more{display:none}
.gallery__thumb-play{position:absolute;inset:0;display:grid;place-items:center;background:rgba(30,24,16,.34)}
.gallery__thumb-play svg{width:16px;height:16px;fill:#fff}
.gallery__thumb--video[aria-current="true"] .gallery__thumb-play{background:rgba(30,24,16,.2)}
.gallery__play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);display:inline-flex;align-items:center;gap:12px;min-height:56px;padding:0 24px 0 20px;border:0;border-radius:999px;background:var(--white);color:var(--dark);font-family:var(--font-heading);font-size:15px;font-weight:700;cursor:pointer;box-shadow:0 10px 28px rgba(30,24,16,.28)}
.gallery__play[hidden]{display:none}
.gallery__play{cursor:pointer}
.gallery__play:hover{background:var(--dark);color:#fff}
.gallery__video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;background:#000;z-index:2}
.gallery__video[hidden]{display:none}
.gallery__play svg{width:15px;height:15px;fill:currentColor}
@media (max-width:640px){
  .gallery--all .gallery__thumbs li,.gallery__thumbs li{flex:0 0 30%}
  .gallery__play{min-height:48px;font-size:14px;padding:0 18px 0 16px}
}

/* --------------------------------------------------------------------------
   Dit zit er standaard bij (scroller)
   -------------------------------------------------------------------------- */
.included{padding-top:96px;padding-bottom:96px}
.included__head{margin-bottom:28px}
.included__head h2{margin:14px 0 0}
.included__head p{margin:10px 0 0;color:var(--muted);max-width:60ch}
.chip{display:inline-flex;align-items:center;gap:7px;padding:6px 13px;border-radius:999px;background:var(--yellow);color:var(--dark);font-family:var(--font-heading);font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.chip::before{content:"";width:12px;height:12px;background:var(--dark);-webkit-mask:var(--check) center/11px no-repeat;mask:var(--check) center/11px no-repeat}
.included__scroller{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(300px,1fr);gap:20px;overflow-x:auto;padding-bottom:14px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
.included__scroller>*{scroll-snap-align:start}
.included__scroller::-webkit-scrollbar{height:8px}
.included__scroller::-webkit-scrollbar-track{background:var(--grey-100);border-radius:99px}
.included__scroller::-webkit-scrollbar-thumb{background:var(--grey-line);border-radius:99px}
.included__scroller::-webkit-scrollbar-thumb:hover{background:var(--muted)}
.inc-card{display:flex;flex-direction:column;background:var(--cream);border-radius:var(--radius-md);overflow:hidden}
.inc-card__media{margin:0;aspect-ratio:1/1;background:var(--grey-100);overflow:hidden}
.inc-card__media img{width:100%;height:100%;object-fit:cover;display:block}
.inc-card__media--zoom img{transform:scale(1.3)}
.inc-card__body{padding:20px;display:flex;flex-direction:column;gap:7px;flex:1}
.inc-card__body h3{font-family:var(--font-heading);font-size:18px;margin:0;color:var(--dark)}
.inc-card__body p{margin:0;font-size:14px;color:var(--text)}
.inc-card__points{margin:2px 0 0;padding:0;list-style:none;display:flex;flex-direction:column;gap:7px}
.inc-card__points li{position:relative;padding-left:22px;font-size:14px;line-height:1.5;color:var(--text)}
.inc-card__points li::before{content:"";position:absolute;left:0;top:6px;width:8px;height:8px;border-radius:50%;background:var(--yellow)}
.included__hint{display:flex;align-items:center;gap:8px;margin:14px 0 0;font-size:13px;color:var(--muted)}
.included__cta{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;margin-top:28px;padding:24px 32px;background:var(--cream);border-radius:var(--radius-md)}
.included__cta p{margin:0;font-family:var(--font-heading);font-size:19px;font-weight:600;color:var(--dark)}
.included__cta-right{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.inc-card__more{margin-top:auto;padding-top:10px}
.inc-card__more>summary{display:flex;align-items:center;gap:6px;min-height:44px;cursor:pointer;list-style:none;font-family:var(--font-heading);font-size:14px;font-weight:700;color:var(--dark)}
.inc-card__more>summary::-webkit-details-marker{display:none}
.inc-card__more>summary::after{content:"";width:9px;height:9px;border-right:2px solid var(--dark);border-bottom:2px solid var(--dark);transform:rotate(45deg) translateY(-2px);transition:transform .18s ease}
.inc-card__more>summary:hover{color:var(--yellow-hover)}
.inc-card__more[open]>summary::after{transform:rotate(-135deg) translateY(-2px)}
.inc-card__more[open]>summary{margin-bottom:2px}
.inc-card__more p{margin:0;font-size:14px;color:var(--text)}
@media (max-width:640px){
  .included{padding-top:56px;padding-bottom:56px}
  .included__scroller{grid-auto-columns:minmax(78%,78%);gap:14px}
  .included__cta{padding:20px}
  .included__cta p{font-size:17px}
}

/* --------------------------------------------------------------------------
   Andere photobooths — portret-carrousel
   -------------------------------------------------------------------------- */
.others{padding-top:96px}
.others__head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;flex-wrap:wrap;margin-bottom:28px}
.others__head h2{margin:0}
.others__head p{margin:8px 0 0;color:var(--muted);max-width:58ch}
.others__head-right{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.others__link{display:inline-flex;align-items:center;gap:7px;flex:0 0 auto;white-space:nowrap;font-family:var(--font-heading);font-size:15px;font-weight:600;color:var(--dark);text-decoration:none;border-bottom:2px solid var(--yellow);padding-bottom:2px}
.others__link:hover{color:var(--yellow-hover)}
.others__arrow{width:13px;height:13px;fill:currentColor;transform:rotate(-90deg);flex:0 0 auto}
.others__nav{display:flex;gap:8px}
.others__btn{display:grid;place-items:center;width:44px;height:44px;border:1px solid var(--grey-line);border-radius:50%;background:var(--white);color:var(--dark);cursor:pointer}
.others__btn:hover{background:var(--yellow);border-color:var(--yellow)}
.others__btn svg{width:13px;height:13px;fill:currentColor}
.others__btn--prev svg{transform:rotate(90deg)}
.others__btn--next svg{transform:rotate(-90deg)}
.others__rail{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(300px,1fr);gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;padding-bottom:14px}
.others__rail>*{scroll-snap-align:start}
.others__rail::-webkit-scrollbar{height:8px}
.others__rail::-webkit-scrollbar-track{background:rgba(30,24,16,.08);border-radius:99px}
.others__rail::-webkit-scrollbar-thumb{background:var(--grey-line);border-radius:99px}
.booth{position:relative;display:block;border-radius:var(--radius-md);overflow:hidden;text-decoration:none;background:var(--dark);aspect-ratio:3/4}
.booth img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.booth:hover img{transform:scale(1.05)}
.booth::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(30,24,16,.92) 0%,rgba(30,24,16,.34) 46%,rgba(30,24,16,0) 74%)}
.booth__in{position:absolute;inset:auto 0 0 0;z-index:1;padding:20px;display:flex;flex-direction:column;gap:6px}
.booth__in h3{font-family:var(--font-heading);font-size:19px;color:#fff;margin:0}
.booth__in p{margin:0;font-size:14px;color:#e6e1d8}
.booth__price{display:flex;align-items:baseline;gap:6px;font-family:var(--font-heading);white-space:nowrap}
.booth__price i{font-style:normal;font-size:13px;font-weight:600;color:#bdb6ac}
.booth__price b{font-size:18px;color:var(--yellow)}
.booth__price s{text-decoration:none;font-size:12px;font-weight:600;color:#bdb6ac;text-transform:uppercase;letter-spacing:.05em}
.booth__go{display:inline-flex;align-items:center;gap:6px;margin-top:4px;font-family:var(--font-heading);font-size:14px;font-weight:700;color:#fff;white-space:nowrap}
.booth:hover .booth__go{color:var(--yellow)}
.others__hint{display:flex;align-items:center;gap:8px;margin:12px 0 0;font-size:13px;color:var(--muted)}
@media (max-width:640px){
  .others{padding-top:56px}
  .others__head-right{width:100%;justify-content:space-between}
  .others__rail{grid-auto-columns:minmax(74%,74%);gap:14px}
}

/* Zo werkt het + Inbegrepen samengevoegd */
.included--merged{padding:0;margin-top:64px;padding-top:40px;border-top:1px solid var(--grey-line)}
.included--merged .included__title{margin:0;font-family:var(--font-heading);font-size:26px;line-height:1.15;color:var(--dark)}
.included--merged .included__head{margin-bottom:24px}
@media (max-width:640px){.included--merged{margin-top:40px;padding-top:28px}.included--merged .included__title{font-size:22px}}

/* Hero: gelijkmatige verticale ritmiek */
.hero__inner--split .hero__body{gap:28px}
.hero__inner--split .hero__head{display:flex;flex-direction:column;gap:14px}
.hero__inner--split .hero__head h1{margin:0}
.hero__inner--split .hero__head .rating{margin:0}
.hero__inner--split .hero__text{display:flex;flex-direction:column;gap:16px}
.hero__inner--split .hero__text p{margin:0}
.hero__inner--split .checklist{margin:0;gap:10px}
.hero__inner--split .hero__buy{gap:28px;margin:0}
@media (max-width:640px){
  .hero__inner--split .hero__body{gap:22px}
  .hero__inner--split .hero__buy{gap:22px}
}

/* Hero-titel: één woord in het geel, iets kleiner dan de standaard h1 */
.hero__head h1{font-size:38px}
.hero__head h1 em{font-style:normal;color:var(--yellow-hover)}
@media (max-width:1024px){.hero__head h1{font-size:33px}}
@media (max-width:640px){.hero__head h1{font-size:27px}}

/* Aanloopregel boven de hero-titel */
.hero__kicker{margin:0 0 10px;font-family:var(--font-heading);font-size:13px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
@media (max-width:640px){.hero__kicker{display:none}}

/* Galerijlabel niet op telefoon */
@media (max-width:640px){.gallery__badge{display:none}}

/* Header zonder topbalk: telefoonnummer naast de knop */
.header__tel{display:inline-flex;align-items:center;gap:9px;margin-left:auto;padding:10px 18px;border-radius:var(--radius-sm);background:var(--dark);font-family:var(--font-heading);font-size:15px;font-weight:700;color:#fff;text-decoration:none;white-space:nowrap}
.header__tel svg{width:15px;height:15px;flex:0 0 auto;fill:var(--yellow)}
.header__tel small{display:none}
.header__tel:hover{background:#000;color:#fff}
.header__tel+.header__cta{margin-left:20px}
@media (max-width:1024px){.header__tel{display:none}}

/* Video-items in de hero-galerij */
.gallery__yt{position:absolute;inset:0;z-index:3;display:grid;place-items:center;border:0;background:rgba(30,24,16,.18);cursor:pointer}
.gallery__yt[hidden]{display:none}
.gallery__yt .yt__play{display:grid;place-items:center;width:72px;height:72px;border-radius:50%;background:rgba(30,24,16,.72)}
.gallery__yt .yt__play svg{width:24px;height:24px;fill:#fff;margin-left:4px}
.gallery__yt:hover .yt__play{background:var(--yellow)}
.gallery__yt:hover .yt__play svg{fill:var(--dark)}
.gallery__embed{position:absolute;inset:0;width:100%;height:100%;border:0;z-index:4}
.gallery__thumb--video{position:relative}
.gallery__thumb-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:grid;place-items:center;width:30px;height:30px;border-radius:50%;background:rgba(30,24,16,.66)}
.gallery__thumb-play svg{width:11px;height:11px;fill:#fff;margin-left:2px}
