/* ==========================================================================
   Kapsalon & Barbershop 2+2=1 JagarXwen
   Ontwerp: Claude Design handoff "Barbershop 2plus2is1 Award"
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --ink: #0a160c;
  --ink-2: #0c1e10;
  --ink-3: #081409;
  --ink-4: #060f07;
  --ink-hover: #14301a;

  --paper: #f4f0e4;
  --muted: #cfc9b4;
  --muted-2: #bfb9a5;
  --muted-3: #8f8b77;

  --gold: #e8b335;
  --gold-hi: #f5c95e;
  --gold-line: rgba(232, 179, 53, 0.16);
  --gold-line-strong: rgba(232, 179, 53, 0.4);
  --live: #7ed957;

  --font-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1280px;
  --gutter: 24px;
  --header-bar: 72px;
  --radius-card: 22px;
  --radius-img: 18px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.2, 0.7, 0.1, 1);

  --shadow-lift: 0 32px 80px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 18px 44px rgba(232, 179, 53, 0.28);
}

/* --------------------------------------------------------------------------
   2. Basis
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Ruimte onder de vaste header bij het springen naar een anker. */
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

body.is-locked {
  overflow: hidden;
}

img,
picture,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

a:hover {
  color: var(--gold-hi);
}

button {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

::selection {
  background: var(--gold);
  color: var(--ink-2);
}

:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--ink-2);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
  color: var(--ink-2);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  width: 100%;
  padding-inline: var(--gutter);
}

.section {
  border-top: 1px solid rgba(232, 179, 53, 0.12);
}

.section--ink2 {
  background: var(--ink-2);
}

.section--ink3 {
  background: var(--ink-3);
}

.section__inner {
  padding-block: clamp(72px, 10vw, 128px);
}

.section__inner--tight {
  padding-block: clamp(64px, 9vw, 112px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
}

.section-title--sm {
  font-size: clamp(32px, 4.2vw, 52px);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.section-head__note {
  margin: 0;
  color: var(--muted-3);
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   3. Knoppen
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  min-height: 44px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease-out;
}

.btn--gold {
  background: var(--gold);
  color: var(--ink-2);
}

.btn--gold:hover {
  background: var(--gold-hi);
  color: var(--ink-2);
}

.btn--ghost {
  background: none;
  border: 1.5px solid rgba(232, 179, 53, 0.5);
  color: var(--gold);
}

.btn--ghost:hover {
  border-color: var(--gold-hi);
  color: var(--gold-hi);
}

.btn--lg {
  padding: 18px 32px;
  font-size: 16px;
}

.btn--lg.btn--gold {
  box-shadow: var(--shadow-gold);
}

.btn--md {
  padding: 14px 24px;
  font-size: 15px;
}

.btn--sm {
  padding: 11px 20px;
  font-size: 14px;
}

.btn--xs {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  min-height: 0;
}

.btn__arrow {
  font-size: 18px;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   4. Header en navigatie
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(8, 18, 10, 0.85) 0%, rgba(8, 18, 10, 0.45) 70%, rgba(8, 18, 10, 0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header__bar {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
}

.brand:hover {
  color: var(--paper);
}

.brand__mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.brand__sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.3em;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav__link {
  color: var(--muted);
}

.nav__link:hover {
  color: var(--gold-hi);
}

.nav__link[aria-current="page"] {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

.nav-mobile {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  background: none;
  border: 1.5px solid rgba(232, 179, 53, 0.45);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer {
  display: none;
  background: #0a180d;
  border-bottom: 1px solid rgba(232, 179, 53, 0.25);
  flex-direction: column;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  /* De header staat vast. Op lage schermen en bij veel zoom zou de laatste
     link anders buiten beeld vallen zonder dat je erbij kunt. */
  max-height: calc(100vh - var(--header-bar));
  max-height: calc(100svh - var(--header-bar));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.drawer.is-open {
  display: flex;
}

.drawer a {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  padding: 15px var(--gutter);
  border-top: 1px solid rgba(232, 179, 53, 0.12);
}

.drawer a:hover {
  color: var(--gold-hi);
}

.drawer a[aria-current="page"] {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav-mobile {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: max(660px, 100svh);
  display: flex;
  align-items: flex-end;
}

.hero--location {
  min-height: max(560px, 86svh);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--ink);
}

.hero__veil {
  position: absolute;
  inset: 0;
  /* De lichtbron op het canvas loopt tot bijna wit. Zonder deze ondergrens
     zakt de tekst eroverheen tot onder 2:1 en is ze tijdelijk onleesbaar. */
  background: linear-gradient(
    180deg,
    rgba(8, 18, 10, 0.7) 0%,
    rgba(8, 18, 10, 0.62) 38%,
    rgba(8, 18, 10, 0.68) 72%,
    rgba(8, 18, 10, 0.94) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--shell);
  margin: 0 auto;
  width: 100%;
  padding: 140px var(--gutter) clamp(48px, 7vh, 84px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--gold-line-strong);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--paper);
  background: rgba(8, 18, 10, 0.55);
  backdrop-filter: blur(6px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  animation: pulseDot 2.2s ease-in-out infinite;
  flex: none;
}

.status-dot--open {
  background: var(--live);
}

.status-dot--sm {
  width: 7px;
  height: 7px;
}

.hero__places {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(58px, 10.5vw, 148px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.hero__title--location {
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1;
}

.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.hero__line:last-child {
  padding-bottom: 0.08em;
}

.hero__word {
  display: inline-block;
  animation: wordUp 0.9s var(--ease-out) both;
}

.hero__word--accent {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
}

.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__lead {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Vertraagde intro van de heroblokken. */
.reveal-1 { animation: fadeUp 0.9s var(--ease) 0.7s both; }
.reveal-2 { animation: fadeUp 0.9s var(--ease) 0.85s both; }
.reveal-3 { animation: fadeUp 0.9s var(--ease) 0.75s both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.28s; }
.delay-3 { animation-delay: 0.46s; }

/* Locatiewissel bovenin de locatiepagina. */
.hero__switch {
  /* align-self is nodig: .hero__inner is een kolom met align-items stretch,
     zonder dit rekt de capsule over de volle breedte van de hero. */
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  border: 1.5px solid var(--gold-line-strong);
  border-radius: 999px;
  background: rgba(8, 18, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.loc-tab {
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
}

.loc-tab:hover {
  background: rgba(232, 179, 53, 0.15);
  color: var(--gold-hi);
}

.loc-tab--active {
  background: var(--gold);
  color: var(--ink-2);
}

.hero__address {
  color: var(--muted);
  font-size: 15px;
}

.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__card {
  flex: 0 1 380px;
  margin: 0 auto;
  width: min(380px, 100%);
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(232, 179, 53, 0.2);
}

/* --------------------------------------------------------------------------
   6. Marquee
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: var(--ink-3);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 16px 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__group {
  display: flex;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.marquee__sep {
  color: var(--gold);
}

.marquee__em {
  font-style: italic;
}

/* --------------------------------------------------------------------------
   7. Verhaal
   -------------------------------------------------------------------------- */
.story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.story__body p {
  color: var(--muted-2);
  font-size: 17px;
  line-height: 1.7;
  max-width: 56ch;
}

.story__title {
  margin: 0 0 24px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
}

.story__title em {
  color: var(--gold);
}

.story__lead {
  margin-bottom: 18px;
}

.story__lead + p {
  margin-bottom: 36px;
}

.pillars {
  display: flex;
  flex-direction: column;
}

.pillar {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(232, 179, 53, 0.18);
}

.pillar:last-child {
  border-bottom: 1px solid rgba(232, 179, 53, 0.18);
}

.pillar__n {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  min-width: 30px;
}

.pillar__text {
  font-weight: 600;
  font-size: 17px;
}

.story__figure {
  height: clamp(380px, 46vw, 560px);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(232, 179, 53, 0.14);
  margin: 0;
}

/* --------------------------------------------------------------------------
   8. Diensten
   -------------------------------------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 40px 56px;
}

.service-group {
  display: flex;
  flex-direction: column;
}

.service-group__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  color: var(--gold);
}

.service {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--gold-line);
  border-radius: 8px;
  font-family: inherit;
  color: var(--paper);
  cursor: pointer;
  padding: 15px 6px;
  min-height: 44px;
  width: 100%;
  transition: background 0.2s ease;
}

.service:hover {
  background: rgba(20, 48, 26, 0.65);
}

.service__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.service__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}

.service__duration {
  font-size: 13px;
  color: var(--muted-3);
}

.service__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   9. Galerij
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 18px;
}

.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-img);
  overflow: hidden;
  border: 1px solid rgba(232, 179, 53, 0.14);
  height: 360px;
}

.gallery--location .gallery__item {
  height: 280px;
}

.gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(180deg, rgba(8, 18, 10, 0) 0%, rgba(8, 18, 10, 0.85) 100%);
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   10. Beeld
   -------------------------------------------------------------------------- */
.ph {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--ink-2);
  background-size: cover;
  background-position: center;
}

.ph picture {
  display: contents;
}

.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s var(--ease);
}

.ph img.is-loaded {
  opacity: 1;
}

.zoom:hover .ph img,
.zoom:focus-within .ph img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   11. Boeken en locaties
   -------------------------------------------------------------------------- */
.booking {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(232, 179, 53, 0.12);
}

.booking__veil {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 10, 0.84);
}

.booking__inner {
  position: relative;
  z-index: 1;
}

.booking__head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.booking__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 22px;
}

.loc-card {
  background: rgba(12, 30, 16, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(232, 179, 53, 0.2);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.loc-card__title {
  margin: 0;
  font-size: 28px;
}

.loc-card__title a {
  color: var(--paper);
}

.loc-card__title a:hover {
  color: var(--gold-hi);
}

.loc-card__address {
  margin: 0;
  color: var(--muted-2);
  font-size: 15px;
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(232, 179, 53, 0.12);
  padding-bottom: 8px;
}

.hours__row dt {
  margin: 0;
}

.hours__row dd {
  margin: 0;
  color: var(--gold);
  font-weight: 600;
}

.hours--lg {
  gap: 10px;
  font-size: 15px;
  max-width: 380px;
}

.hours--lg .hours__row {
  padding-bottom: 10px;
}

.loc-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 6px;
}

/* --------------------------------------------------------------------------
   12. Eerstvolgende plek
   -------------------------------------------------------------------------- */
.next-slots {
  background: var(--gold);
  color: var(--ink-2);
}

.next-slots__inner {
  padding: 28px var(--gutter) 32px;
}

.next-slots__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.next-slots__title {
  margin: 0;
  font-size: 22px;
}

.next-slots__note {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.75;
}

.next-slots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.slot {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(12, 30, 16, 0.94);
  color: var(--paper);
  border: 0;
  border-radius: 14px;
  padding: 16px 18px;
  min-height: 44px;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease;
}

.slot:hover {
  background: var(--ink-hover);
}

/* De gouden balk is te licht voor de standaard gouden focusring. */
.next-slots :focus-visible {
  outline-color: var(--ink-2);
}

.slot__top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
}

.slot__service {
  font-size: 16px;
}

.slot__duration {
  font-size: 12px;
  color: var(--muted-2);
  white-space: nowrap;
}

.slot__next {
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   13. Contact en reviews
   -------------------------------------------------------------------------- */
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.contact__col {
  flex: 1 1 300px;
}

.contact__title {
  margin: 0 0 24px;
  font-size: clamp(26px, 3.5vw, 36px);
}

.contact__text {
  margin: 0 0 8px;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.7;
}

.contact__text--gap {
  margin-bottom: 20px;
}

.contact__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.reviews__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-weight: 600;
  font-size: 15px;
}

.reviews__rating:hover {
  color: var(--gold-hi);
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 18px;
}

.review {
  margin: 0;
  background: rgba(15, 36, 20, 0.55);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-img);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review__stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
}

.review blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.review figcaption {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-3);
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-4);
  border-top: 1px solid rgba(232, 179, 53, 0.14);
}

.site-footer__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 44px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted-3);
  line-height: 1.6;
}

.site-footer__name {
  color: var(--muted);
  font-size: 14px;
}

.site-footer__col a {
  color: var(--muted-3);
}

.site-footer__col a:hover {
  color: var(--gold);
}

.site-footer__col a.is-underlined {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   15. Boekingsvenster
   -------------------------------------------------------------------------- */
/* Een dialog zonder open-attribuut blijft verborgen. Zonder deze regel zou
   display: flex de standaard display: none van de browser overschrijven. */
.modal {
  display: none;
}

.modal[open] {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6, 15, 7, 0.8);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  overflow: hidden;
}

.modal::backdrop {
  background: rgba(6, 15, 7, 0.8);
  backdrop-filter: blur(6px);
}

.modal__panel {
  background: var(--ink-2);
  border: 1px solid rgba(232, 179, 53, 0.35);
  border-radius: 20px;
  overflow: hidden;
  width: min(460px, 100%);
  height: min(740px, 92vh);
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.modal__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(232, 179, 53, 0.2);
}

.modal__head img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.modal__titles {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
}

.modal__sub {
  font-size: 12px;
  color: var(--muted-2);
}

.modal__close {
  margin-left: auto;
  background: none;
  border: 1.5px solid rgba(232, 179, 53, 0.45);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  flex: none;
}

.modal__close:hover {
  border-color: var(--gold-hi);
  color: var(--gold-hi);
}

.modal__frame {
  flex: 1;
  border: 0;
  width: 100%;
  background: #ffffff;
}

/* --------------------------------------------------------------------------
   16. Cursor
   -------------------------------------------------------------------------- */
.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.25s ease;
  will-change: transform;
  border-radius: 999px;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(232, 179, 53, 0.75);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
}

html.has-custom-cursor,
html.has-custom-cursor body,
html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor [data-magnetic] {
  cursor: none;
}

/* --------------------------------------------------------------------------
   17. Animaties
   -------------------------------------------------------------------------- */
@keyframes wordUp {
  from {
    transform: translateY(112%) rotate(3deg);
  }
  to {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.65);
  }
}

/* Onthullen bij scrollen, aangestuurd door de IntersectionObserver in site.js. */
.observe {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.observe.is-in {
  opacity: 1;
  transform: none;
}

.observe.delay-a {
  transition-delay: 0.15s;
}

/* --------------------------------------------------------------------------
   18. Minder beweging
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .marquee__track {
    animation: none;
  }

  .observe {
    opacity: 1;
    transform: none;
  }

  .ph > img {
    opacity: 1;
  }

  .cursor-ring,
  .cursor-dot {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   19. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .marquee,
  .hero__canvas,
  .booking__veil,
  .cursor-ring,
  .cursor-dot,
  .modal {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #111111;
  }
}
