/* ===== Design tokens ===== */
:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-fg: #f8f8f8;
  --color-fg-muted: #9a9a9a;
  --color-accent: #e86a20;
  --color-accent-hover: #ff7d2e;
  --color-line: rgba(255, 255, 255, 0.12);
  --color-light-bg: #f4f1ee;
  --color-light-fg: #111111;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Rethink Sans', sans-serif;

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --radius: 4px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; text-transform: uppercase; line-height: 0.95; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 0.85em 1.75em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: var(--color-accent-hover); transform: translateY(-1px); }

/* Hero-CTA: glow-knop (uiverse.io by Allyhere), herkleurd naar Barber's Inc-merkkleuren */
.btn-donate {
  --btn-bg-1: #ff9040;
  --btn-bg-2: #c9540f;
  --btn-bg-color: #fff;
  --radii: 0;
  cursor: pointer;
  padding: 0.9em 1.4em;
  min-width: 120px;
  min-height: 44px;
  font-size: var(--size, 0.85rem);
  font-weight: 700;
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
  border: none;
  border-radius: var(--radii);
  color: var(--btn-bg-color);
  box-shadow:
    0px 0px 20px rgba(232, 106, 32, 0.5),
    0px 5px 5px -1px rgba(180, 80, 20, 0.25),
    inset 4px 4px 8px rgba(255, 210, 170, 0.5),
    inset -4px -4px 8px rgba(140, 60, 10, 0.35);
}
.btn-donate:hover {
  background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
  background-position: right top;
  transform: none;
}
.btn-donate:is(:focus, :focus-visible, :active) {
  outline: none;
  box-shadow:
    0 0 0 3px var(--btn-bg-color),
    0 0 0 6px var(--btn-bg-2);
}
@media (prefers-reduced-motion: reduce) {
  .btn-donate { transition: linear; }
}

/* ===== Scroll-animaties: fade-up (hergebruikt patroon uit foodiesandfamily.nl) ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ===== Header ===== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: transparent;
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}
.site-header__logo img { height: 40px; width: auto; }
.site-header__right { display: flex; align-items: center; gap: 1.5rem; }
.site-header__meta {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-fg);
}
.site-header__meta a:hover { color: var(--color-fg); }
.site-header__socials { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }
.site-header__instagram, .site-header__tiktok { display: flex; align-items: center; flex-shrink: 0; }
.site-header__instagram svg, .site-header__tiktok svg { width: 20px; height: 20px; color: var(--color-fg); }
@media (min-width: 900px) {
  .site-header__meta { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 6rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.75rem, 8vw, 6.75rem);
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  color: var(--color-fg);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.685rem 1rem;
  border-radius: 0;
}
.hero__rating .hero__rating-badges { display: flex; align-items: center; gap: 0.3rem; }
.hero__rating .hero__rating-badges svg { height: 20px; width: 20px; }
.hero__rating .stars { color: var(--color-accent); letter-spacing: 0.08em; }

.sticky-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 45;
  width: 190px;
  height: 45px;
  border: none;
  background: transparent;
}

/* ===== Elevate your look ===== */
.elevate {
  padding-block: 6rem;
  border-bottom: 1px solid var(--color-line);
}
.elevate__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.elevate h2 { font-size: clamp(3.94rem, 8.75vw, 5.69rem); margin-bottom: 1.25rem; }
.elevate p { color: var(--color-fg-muted); max-width: 42ch; margin-bottom: 1.75rem; }
.elevate__hours { margin-top: 2rem; font-size: 0.8rem; color: var(--color-fg-muted); line-height: 1.3; }
.elevate__media { position: relative; width: 100%; aspect-ratio: 4 / 5; max-width: 420px; margin-inline: auto; }
.elevate__media picture {
  position: absolute;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}
.elevate__media picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
.elevate__media picture.collage-main { top: 0; right: 0; left: 15%; bottom: 12%; z-index: 1; }
.elevate__media picture.collage-inset {
  left: 0; bottom: 0;
  width: 55%; height: 50%;
  z-index: 2;
  border: 4px solid var(--color-bg);
}
@media (min-width: 900px) {
  .elevate__grid { grid-template-columns: 1fr 0.9fr; }
}

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  padding-block: 1.5rem;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 44s linear infinite;
}
.marquee__track span {
  font-family: var(--font-body);
  font-size: clamp(6rem, 18vw, 14rem);
  color: var(--color-fg);
  padding-inline: 1.5rem;
  white-space: nowrap;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ===== USP grid ===== */
.usp {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--color-line);
}
.usp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
}
.usp__item {
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem);
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.5rem;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.usp__item:hover { background-color: #181818; }
@media (min-width: 900px) {
  .usp__item { gap: 0; }
}
.usp__item:nth-child(2n) { border-right: none; }
.usp__item svg { width: auto; height: 78px; fill: var(--color-fg); align-self: flex-start; }
.usp__item span { display: block; font-family: var(--font-display); font-size: 1.509375rem; line-height: 1; text-transform: uppercase; }
.usp__text { padding: 3rem clamp(1.25rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.usp__text h2 { font-size: clamp(3.33rem, 7vw, 4.55rem); margin-bottom: 1rem; }
.usp__text p { color: var(--color-fg-muted); max-width: 44ch; margin-bottom: 1.75rem; }
@media (min-width: 900px) {
  .usp { grid-template-columns: 1fr 1fr; min-height: 92vh; }
  .usp__grid { grid-template-columns: repeat(2, 1fr); border-right: 1px solid var(--color-line); }
  .usp__item span { font-size: 2.15625rem; }
}

/* ===== Services carousel ===== */
.services { padding-block: 6rem; border-bottom: 1px solid var(--color-line); }
.services__head { text-align: center; max-width: 56rem; margin-inline: auto; margin-bottom: 3rem; }
.services__head h2 { font-size: clamp(3.5rem, 8.75vw, 5.08rem); }
.services__hint { display: block; margin-top: 0.75rem; font-size: 0.8rem; color: var(--color-fg-muted); }
.services-swiper { padding-inline: var(--gutter); }
.services-swiper .swiper-wrapper { align-items: stretch; }
.services-swiper .service-card.swiper-slide {
  width: min(78vw, 320px) !important;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  height: auto;
  transition: background-color 0.3s ease;
}
.services-swiper .service-card.swiper-slide:hover { background-color: #181818; }
.service-card__media { aspect-ratio: 3 / 4; overflow: hidden; }
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.service-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.service-card__body h3 { font-size: 1.8rem; line-height: 1.05; }
.service-card__body p { color: var(--color-fg-muted); font-size: 0.85rem; flex: 1; }
.service-card__cta {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-accent);
  border-radius: 0;
}
.service-card__cta svg { width: 14px; height: 14px; fill: #fff; }
.services .swiper-pagination { position: static; margin-top: 1.5rem; padding-inline: var(--gutter); }
.services .swiper-pagination-bullet { background: var(--color-fg-muted); opacity: 1; }
.services .swiper-pagination-bullet-active { background: var(--color-accent); }

/* ===== Testimonials ===== */
.testimonials { padding-block: 6rem; border-bottom: 1px solid var(--color-line); }
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.testimonials__intro h2 { font-size: clamp(3.94rem, 8.75vw, 5.25rem); margin-block: 1rem 1.5rem; }
.testimonials__list { display: grid; gap: 1.25rem; }
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background-color 0.3s ease;
}
.testimonial-card:hover { background-color: #181818; }
.testimonial-card__quote-mark { font-family: var(--font-display); font-size: 17.5rem; color: var(--color-accent); line-height: 0.6; margin-top: 2rem; margin-bottom: -6rem; display: block; }
.testimonial-card p { color: var(--color-fg-muted); font-size: 0.9rem; }
.testimonial-card__author { font-family: var(--font-display); font-size: 1.6rem; text-transform: uppercase; }
.testimonial-card__location { font-size: 1.1rem; color: var(--color-fg-muted); }
@media (min-width: 900px) {
  .testimonials__grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .testimonials__intro { position: sticky; top: 6rem; }
}

/* ===== Academy ===== */
.academy { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--color-line); }
.academy__media { background: var(--color-light-bg); }
.academy__media img { width: 100%; height: 100%; object-fit: cover; }
.academy__content { padding: 3rem clamp(1.25rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.academy__content h2 { font-size: clamp(3.33rem, 7vw, 4.55rem); margin-bottom: 1rem; }
.academy__content p { color: var(--color-fg-muted); max-width: 42ch; margin-bottom: 1.75rem; }
@media (min-width: 900px) {
  .academy { grid-template-columns: 1.1fr 0.9fr; min-height: 92vh; }
}

/* ===== Booking ===== */
/* ===== CTA ===== */
.cta { padding-block: 6rem; border-bottom: 1px solid var(--color-line); }
.cta__card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 0;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem) clamp(20rem, 49vw, 26rem);
  overflow: visible;
}
.cta__pattern {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
  background-image: url('images/cta-pattern.webp');
  background-repeat: repeat;
  background-size: 220px;
  opacity: 0.12;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 35%, black 65%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 35%, black 65%, black 100%);
}
.cta__content { position: relative; z-index: 1; max-width: 100%; }
.cta__content .eyebrow { margin-bottom: 0.75rem; }
.cta__content h2 { font-size: clamp(2.75rem, 6vw, 4rem); margin-bottom: 1rem; }
.cta__content p { color: var(--color-fg-muted); margin-bottom: 2rem; max-width: 44ch; }
.cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.cta__phone { display: flex; align-items: center; gap: 0.75rem; }
.cta__phone-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 0;
  flex-shrink: 0;
}
.cta__phone-icon svg { width: 20px; height: 20px; fill: #000; }
.cta__phone-text { display: flex; flex-direction: column; font-size: 0.9rem; }
.cta__phone-label { color: var(--color-fg-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.cta__phone-text strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; }
.cta__media {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(210px, 34vw, 280px);
}
.cta__media img { display: block; width: 100%; height: auto; }
@media (min-width: 900px) {
  .cta { padding-top: 13.22rem; }
  .cta__content { max-width: 34rem; }
  .cta__card { padding: clamp(2rem, 5vw, 4rem); padding-right: min(30vw, 400px); }
  .cta__media {
    left: auto;
    right: clamp(1.5rem, 5vw, 4rem);
    transform: none;
    width: min(28vw, 380px);
  }
}

/* ===== Footer ===== */
.site-footer { padding-block: 4rem 2.5rem; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-line);
}
.site-footer h3 { font-size: 1.8rem; margin-bottom: 1.25rem; }
.site-footer address { font-style: normal; color: var(--color-fg-muted); font-size: 0.9rem; line-height: 1.8; }
.site-footer p { color: var(--color-fg-muted); font-size: 0.85rem; margin-top: 1rem; max-width: 38ch; }
.site-footer .btn { margin-bottom: 0.5rem; }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.5rem; font-size: 0.75rem; color: var(--color-fg-muted);
}
.site-footer__bottom a:hover { color: var(--color-fg); }
.site-footer__socials { display: flex; gap: 1.25rem; }
.site-footer__credit {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--color-fg-muted);
  opacity: 0.6;
  text-align: center;
}
.site-footer__credit a { color: inherit; }
.site-footer__credit a:hover { color: var(--color-fg); }
@media (min-width: 900px) {
  .site-footer__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Cookie banner (Cookiebot-achtig, compact, merkstijl) ===== */
.cookie-banner {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: min(320px, calc(100vw - 2.5rem));
  background: #0a0a0a;
  border: 1px solid var(--color-line);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-banner__logo { height: 16px; width: auto; }
.cookie-banner p { font-size: 0.8rem; line-height: 1.5; color: var(--color-fg-muted); margin: 0; }
.cookie-banner__actions { display: flex; flex-direction: column; gap: 0.6rem; }
.cookie-banner__accept {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 0.8em 1.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.cookie-banner__accept:hover { background: var(--color-accent-hover); }
.cookie-banner__decline {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-fg-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  align-self: center;
}
.cookie-banner__decline:hover { color: var(--color-fg); }

@media (max-width: 899px) {
  .hero__actions { flex-direction: column; align-items: center; }
}
@media (max-width: 640px) {
  .hero__content { text-align: left; }
  .hero h1 { font-size: 5.5rem; max-width: 100%; margin-inline: 0; }
  .hero__actions { align-items: flex-start; }
}
