/* ═══════════════════════════════════════════════════
   NOIR Barbershop — Hoofd Stijlblad (volledig)
   ═══════════════════════════════════════════════════ */

/* ── 1. Reset & Basis ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  cursor: none;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
em { font-style: italic; color: var(--clr-gold); }

/* ── 2. CSS Custom Properties ── */
:root {
  --clr-bg:            #0a0a0a;
  --clr-bg-2:          #111111;
  --clr-bg-card:       #161616;
  --clr-bg-dark:       #050505;

  --clr-gold:          #c9a84c;
  --clr-gold-light:    #e8c97a;
  --clr-gold-dark:     #8b6914;
  --clr-gold-rgb:      201, 168, 76;

  --clr-white:         #ffffff;
  --clr-off-white:     #f5f0e8;
  --clr-text:          #d4d0c8;
  --clr-text-muted:    #888880;
  --clr-border:        rgba(201, 168, 76, 0.15);
  --clr-border-light:  rgba(255, 255, 255, 0.07);

  --ff-serif:          'Playfair Display', Georgia, serif;
  --ff-fancy:          'Cormorant Garamond', Georgia, serif;
  --ff-sans:           'Raleway', sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  1.875rem;
  --fs-4xl:  2.25rem;
  --fs-5xl:  3rem;
  --fs-6xl:  3.75rem;
  --fs-7xl:  4.5rem;

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px  rgba(0, 0, 0, 0.4);
  --shadow-md:   0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg:   0 20px 48px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.25);
  --shadow-glow: 0 0  40px rgba(201, 168, 76, 0.15);

  --transition-fast:   150ms ease;
  --transition-base:   300ms ease;
  --transition-slow:   600ms ease;
  --transition-spring: 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);

  --navbar-h: 80px;
}

/* ── 3. Custom Cursor ── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 200ms, height 200ms, opacity 200ms;
  will-change: transform;
}

.cursor-outline {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(var(--clr-gold-rgb), 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 300ms ease,
              height 300ms ease,
              border-color 200ms ease;
  will-change: transform;
}

.cursor-dot.hovering {
  width: 14px;
  height: 14px;
}

.cursor-outline.hovering {
  width: 54px;
  height: 54px;
  border-color: var(--clr-gold);
}

/* ── 4. Page Loader ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg-dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-scissors {
  font-size: 3rem;
  color: var(--clr-gold);
  display: block;
  margin-bottom: var(--space-6);
  animation: scissorSpin 1.5s ease-in-out infinite;
}

@keyframes scissorSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50%       { transform: rotate(20deg) scale(1.1); }
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(var(--clr-gold-rgb), 0.2);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto var(--space-4);
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold-light));
  border-radius: var(--radius-full);
  animation: loaderFill 1.8s ease forwards;
}

@keyframes loaderFill {
  from { width: 0; }
  to   { width: 100%; }
}

.loader-text {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

/* ── 5. Navigatie ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-h);
  z-index: 1000;
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              height var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6),
              0 1px 0 rgba(var(--clr-gold-rgb), 0.15);
  height: 68px;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo-icon {
  font-size: var(--fs-2xl);
  color: var(--clr-gold);
  line-height: 1;
}

.logo-text {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--clr-white);
}

.logo-sub {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--clr-gold);
  text-transform: uppercase;
  padding-top: 2px;
  border-left: 1px solid rgba(var(--clr-gold-rgb), 0.4);
  padding-left: var(--space-2);
  margin-left: var(--space-1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-cta {
  background: var(--clr-gold) !important;
  color: var(--clr-bg) !important;
  font-weight: 600;
  padding: var(--space-2) var(--space-6) !important;
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
  transition: background var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base) !important;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--clr-gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform var(--transition-base),
              opacity var(--transition-base);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 6. Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1920&q=80')
    center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.70) 50%,
    rgba(0, 0, 0, 0.60) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--navbar-h) + var(--space-16)) var(--space-8) var(--space-24);
}

.hero-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-6);
}

.hero-title {
  font-family: var(--ff-serif);
  display: flex;
  flex-direction: column;
  font-size: clamp(var(--fs-5xl), 9vw, var(--fs-7xl));
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: var(--space-6);
}

.hero-title .title-line {
  color: var(--clr-white);
  display: block;
}

.hero-title .title-line.italic {
  font-style: italic;
  font-weight: 400;
  color: var(--clr-off-white);
}

.hero-title .title-line.gold {
  color: var(--clr-gold);
}

.hero-subtitle {
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--clr-text);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--space-10);
  letter-spacing: 0.02em;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-number {
  font-family: var(--ff-serif);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.stat-number::after {
  content: '+';
  font-size: var(--fs-xl);
}

.stat-label {
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(var(--clr-gold-rgb), 0.25);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--clr-text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(var(--clr-gold-rgb), 0.4);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: var(--radius-full);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── 7. Sections Basis ── */
.section {
  padding: var(--space-24) 0;
}

.dark-section {
  background: var(--clr-bg-dark);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: var(--space-5);
}

.section-subtitle {
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: var(--space-5) auto 0;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-12);
}

/* Gold divider lijn */
.gold-line {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold-light));
  border-radius: var(--radius-full);
  margin: var(--space-4) 0;
}

.gold-line.center {
  margin: var(--space-4) auto;
}

/* ── 8. Page Hero (subpagina's) ── */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-12);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%),
    url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?w=1920&q=80')
    center / cover no-repeat;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--navbar-h) + var(--space-12)) var(--space-8) 0;
  text-align: center;
}

.page-hero-content h1 {
  font-family: var(--ff-serif);
  font-size: clamp(var(--fs-4xl), 6vw, var(--fs-6xl));
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.page-hero-content p {
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--clr-text);
  max-width: 520px;
  margin: var(--space-4) auto 0;
  line-height: 1.7;
}

/* ── 9. About Teaser ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-accent {
  position: absolute;
  bottom: -var(--space-8);
  right: -var(--space-8);
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--clr-bg);
  box-shadow: var(--shadow-lg);
}

.about-img-accent img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: var(--space-6);
  left: -var(--space-6);
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.badge-number {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-bg);
  line-height: 1;
}

.badge-text {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-bg);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.about-description {
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-6);
  margin: var(--space-8) 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--clr-text);
}

.feature i {
  color: var(--clr-gold);
  font-size: var(--fs-base);
  flex-shrink: 0;
}

/* ── 10. Services Preview ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.service-card {
  position: relative;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-base),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(var(--clr-gold-rgb), 0.05) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--clr-gold-rgb), 0.4);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(var(--clr-gold-rgb), 0.5);
  background: linear-gradient(135deg, #1a1508, var(--clr-bg-card));
}

.service-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(var(--clr-gold-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  transition: background var(--transition-base), transform var(--transition-spring);
}

.service-card:hover .service-icon {
  background: rgba(var(--clr-gold-rgb), 0.2);
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: var(--fs-xl);
  color: var(--clr-gold);
}

.service-card h3 {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.service-price {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-gold);
}

.service-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  transform: translateY(100%);
  transition: transform var(--transition-spring);
}

.service-card:hover .service-hover {
  transform: translateY(0);
}

/* ── 11. Gallery Preview ── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: var(--fs-2xl);
  color: var(--clr-gold);
  transform: scale(0.6);
  transition: transform var(--transition-spring);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ── 12. Gallery Pagina ── */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--clr-border-light);
  color: var(--clr-text-muted);
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-bg);
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery-cell {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.gallery-cell.animate-in {
  animation: cellIn 400ms ease forwards;
}

@keyframes cellIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-cell:hover img {
  transform: scale(1.07);
}

.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.1) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-cell:hover .gallery-cell-overlay {
  opacity: 1;
}

.gallery-cell-overlay i {
  font-size: var(--fs-xl);
  color: var(--clr-gold);
  transform: scale(0.6);
  transition: transform var(--transition-spring);
}

.gallery-cell:hover .gallery-cell-overlay i {
  transform: scale(1);
}

.gallery-cell-overlay span {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-off-white);
  transform: translateY(6px);
  transition: transform var(--transition-base);
}

.gallery-cell:hover .gallery-cell-overlay span {
  transform: translateY(0);
}

/* ── 13. Testimonials ── */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: var(--space-6);
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - var(--space-4));
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-family: var(--ff-serif);
  font-size: 6rem;
  color: rgba(var(--clr-gold-rgb), 0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: var(--clr-gold);
  font-size: var(--fs-lg);
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}

.testimonial-text {
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--clr-text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-bg);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-1);
}

.author-info span {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.slider-btn {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: var(--clr-gold);
  font-size: var(--fs-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.slider-btn:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-gold);
}

.slider-dots {
  display: flex;
  gap: var(--space-2);
}

.slider-dot {
  width: 8px;
  height: 8px;
  background: rgba(var(--clr-gold-rgb), 0.25);
  border-radius: 50%;
  border: none;
  transition: all var(--transition-base);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--clr-gold);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ── 14. CTA Banner ── */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #0d0a02, #1a1303, #0d0a02);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-20) var(--space-8);
  text-align: center;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(var(--clr-gold-rgb), 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(var(--clr-gold-rgb), 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-4);
}

.cta-content p {
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-8);
}

/* ── 15. Services Pagina ── */
.services-full {
  padding: var(--space-20) 0;
}

.service-category {
  margin-bottom: var(--space-16);
}

.category-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--clr-border-light);
}

.category-header i {
  font-size: var(--fs-2xl);
  color: var(--clr-gold);
}

.category-header h2 {
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--clr-white);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-8);
  gap: var(--space-6);
  transition: border-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.service-item:hover {
  border-color: rgba(var(--clr-gold-rgb), 0.35);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.service-item.featured-item {
  border-color: rgba(var(--clr-gold-rgb), 0.35);
  background: linear-gradient(135deg, #1a1508 0%, var(--clr-bg-card) 100%);
}

.service-item-info h3 {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.item-badge {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  background: var(--clr-gold);
  color: var(--clr-bg);
  padding: 2px var(--space-3);
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-item-info p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.service-tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.service-tags span {
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.service-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-3);
  flex-shrink: 0;
}

.service-item-price .price {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-gold);
  white-space: nowrap;
}

.btn-book {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(var(--clr-gold-rgb), 0.5);
  color: var(--clr-gold);
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition-base),
              color var(--transition-base),
              box-shadow var(--transition-base);
}

.btn-book:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
  box-shadow: var(--shadow-gold);
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.package-card {
  position: relative;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured-package {
  border-color: rgba(var(--clr-gold-rgb), 0.5);
  background: linear-gradient(160deg, #1a1508, var(--clr-bg-card));
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-5);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.package-name {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-3);
}

.package-price {
  font-family: var(--ff-serif);
  font-size: var(--fs-5xl);
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: var(--space-6);
  line-height: 1;
}

.package-features {
  text-align: left;
  margin-bottom: var(--space-8);
}

.package-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--clr-text);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--clr-border-light);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features i {
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

/* ── 16. Contact Pagina ── */
.contact-section {
  padding: var(--space-20) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--ff-serif);
  font-size: clamp(var(--fs-3xl), 3vw, var(--fs-4xl));
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-3);
}

.contact-intro {
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  transition: border-color var(--transition-base),
              transform var(--transition-base);
}

.contact-card:hover {
  border-color: rgba(var(--clr-gold-rgb), 0.35);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--clr-gold-rgb), 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon i {
  font-size: var(--fs-base);
  color: var(--clr-gold);
}

.contact-card-info h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-1);
}

.contact-card-info p {
  font-size: var(--fs-sm);
  color: var(--clr-text);
  line-height: 1.6;
}

.contact-card-info a {
  color: var(--clr-text);
  transition: color var(--transition-fast);
}

.contact-card-info a:hover {
  color: var(--clr-gold);
}

.contact-social h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-4);
}

.social-links-big {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.social-link-big {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  font-weight: 400;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.social-link-big:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.map-wrapper {
  margin-top: var(--space-8);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border-light);
}

.map-wrapper iframe {
  display: block;
  filter: grayscale(60%) invert(90%);
  transition: filter var(--transition-base);
}

.map-wrapper:hover iframe {
  filter: grayscale(20%) invert(85%);
}

/* Formulier Wrapper */
.contact-form-wrapper {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  position: sticky;
  top: calc(var(--navbar-h) + var(--space-6));
}

.form-header {
  margin-bottom: var(--space-8);
}

.form-header h3 {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-2);
}

.form-header p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

/* ── 17. Formulier Elementen ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.optional {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--clr-text-muted);
  font-style: italic;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: var(--space-4);
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  pointer-events: none;
  transition: color var(--transition-fast);
  z-index: 1;
}

.textarea-icon {
  top: var(--space-4);
  align-self: flex-start;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  color: var(--clr-text);
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 300;
  padding: var(--space-4) var(--space-4) var(--space-4) var(--space-10);
  outline: none;
  transition: border-color var(--transition-base),
              background var(--transition-base),
              box-shadow var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: rgba(136, 136, 128, 0.5);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: rgba(var(--clr-gold-rgb), 0.6);
  background: rgba(var(--clr-gold-rgb), 0.04);
  box-shadow: 0 0 0 3px rgba(var(--clr-gold-rgb), 0.08);
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper select:focus ~ .input-icon,
.input-wrapper textarea:focus ~ .input-icon {
  color: var(--clr-gold);
}

.input-wrapper:focus-within .input-icon {
  color: var(--clr-gold);
}

.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: var(--space-4);
  color: var(--clr-text-muted);
  font-size: var(--fs-xs);
  pointer-events: none;
}

.textarea-wrapper {
  align-items: flex-start;
}

.textarea-wrapper textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-row-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.char-counter {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-align: right;
  flex-shrink: 0;
}

.field-error {
  font-size: var(--fs-xs);
  color: #ef4444;
  font-weight: 400;
  min-height: 16px;
  display: block;
}

/* Checkbox */
.checkbox-group {
  margin-bottom: var(--space-6);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  margin-top: 1px;
}

.checkbox-label input:checked + .checkmark {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

.checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid var(--clr-bg);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform var(--transition-spring);
  margin-top: -2px;
}

.checkbox-label input:checked + .checkmark::after {
  transform: rotate(45deg) scale(1);
}

.inline-link {
  color: var(--clr-gold);
  text-decoration: underline;
  text-decoration-color: rgba(var(--clr-gold-rgb), 0.4);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--transition-fast);
}

.inline-link:hover {
  text-decoration-color: var(--clr-gold);
}

/* Submit Knop states */
.btn-submit {
  width: 100%;
  position: relative;
}

.btn-loading {
  display: none;
}

.btn-submit.is-loading .btn-text {
  display: none;
}

.btn-submit.is-loading .btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

/* Succes State */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-10) 0;
  animation: fadeInUp 500ms ease;
}

.form-success.visible {
  display: block;
}

.success-animation {
  margin-bottom: var(--space-6);
}

.success-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: successPop var(--transition-spring) forwards;
  box-shadow: var(--shadow-gold);
}

.success-circle i {
  font-size: var(--fs-3xl);
  color: var(--clr-bg);
}

@keyframes successPop {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  70%  { transform: scale(1.1) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.form-success h3 {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  color: var(--clr-white);
  margin-bottom: var(--space-3);
}

.form-success p {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Fout Banner — vervolg */
.form-error-banner {
  display: none;
  align-items: center;
  gap: var(--space-3);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  color: #ef4444;
  font-size: var(--fs-sm);
  margin-top: var(--space-4);
}

.form-error-banner.visible {
  display: flex;
}

.form-error-banner i {
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

/* ── 18. FAQ Sectie ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(var(--clr-gold-rgb), 0.4);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--clr-white);
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  font-weight: 500;
  text-align: left;
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--clr-gold);
}

.faq-question[aria-expanded="true"] {
  color: var(--clr-gold);
}

.faq-icon {
  font-size: var(--fs-sm);
  color: var(--clr-gold);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding var(--transition-base);
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: var(--space-5);
}

.faq-answer p {
  padding: 0 var(--space-6);
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* ── 19. Booking Pagina ── */
.booking-progress {
  background: var(--clr-bg-2);
  border-bottom: 1px solid var(--clr-border-light);
  padding: var(--space-6) 0;
  position: sticky;
  top: 68px;
  z-index: 100;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  position: relative;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-bg-card);
  border: 2px solid var(--clr-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
}

.step-number {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-muted);
  transition: opacity var(--transition-base);
}

.step-check {
  position: absolute;
  font-size: var(--fs-sm);
  color: var(--clr-bg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.progress-step.active .step-circle {
  border-color: var(--clr-gold);
  background: rgba(var(--clr-gold-rgb), 0.1);
  box-shadow: 0 0 0 4px rgba(var(--clr-gold-rgb), 0.1);
}

.progress-step.active .step-number {
  color: var(--clr-gold);
}

.progress-step.completed .step-circle {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

.progress-step.completed .step-number {
  opacity: 0;
}

.progress-step.completed .step-check {
  opacity: 1;
}

.step-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  white-space: nowrap;
  transition: color var(--transition-base);
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
  color: var(--clr-gold);
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--clr-border-light);
  margin: 0 var(--space-3);
  margin-bottom: var(--space-6);
  min-width: 48px;
  max-width: 120px;
  transition: background var(--transition-slow);
}

.progress-line.completed {
  background: var(--clr-gold);
}

/* Booking Layout */
.booking-section {
  padding: var(--space-16) 0 var(--space-24);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-10);
  align-items: start;
}

/* Booking Stappen */
.booking-steps-wrapper {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.booking-step {
  padding: var(--space-10);
  animation: fadeInUp 400ms ease;
}

.booking-step.hidden {
  display: none;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-header {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--clr-border-light);
}

.step-icon {
  width: 52px;
  height: 52px;
  background: rgba(var(--clr-gold-rgb), 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon i {
  font-size: var(--fs-xl);
  color: var(--clr-gold);
}

.step-header h2 {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-1);
}

.step-header p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

/* Service Selector */
.service-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.service-option {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-option:hover {
  border-color: rgba(var(--clr-gold-rgb), 0.4);
  background: rgba(var(--clr-gold-rgb), 0.04);
  transform: translateY(-2px);
}

.service-option.selected {
  border-color: var(--clr-gold);
  background: rgba(var(--clr-gold-rgb), 0.08);
  box-shadow: 0 0 0 1px rgba(var(--clr-gold-rgb), 0.3);
}

.service-option.popular-service {
  border-color: rgba(var(--clr-gold-rgb), 0.3);
  background: linear-gradient(135deg,
    rgba(var(--clr-gold-rgb), 0.05) 0%,
    rgba(255,255,255,0.02) 100%
  );
}

.service-option.vip-service {
  border-color: rgba(147, 51, 234, 0.3);
  background: linear-gradient(135deg,
    rgba(147, 51, 234, 0.05) 0%,
    rgba(255,255,255,0.02) 100%
  );
}

.popular-badge,
.vip-badge {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.popular-badge {
  background: var(--clr-gold);
  color: var(--clr-bg);
}

.vip-badge {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
}

.service-option-icon {
  width: 40px;
  height: 40px;
  background: rgba(var(--clr-gold-rgb), 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-base);
}

.service-option.selected .service-option-icon {
  background: rgba(var(--clr-gold-rgb), 0.2);
}

.service-option-icon i {
  font-size: var(--fs-base);
  color: var(--clr-gold);
}

.service-option-info {
  flex: 1;
  min-width: 0;
}

.service-option-info h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-duration {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.service-duration i {
  font-size: 10px;
}

.service-option-price {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-gold);
  flex-shrink: 0;
}

.service-option-check {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  width: 20px;
  height: 20px;
  background: var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition-spring);
}

.service-option.selected .service-option-check {
  opacity: 1;
  transform: scale(1);
}

.service-option-check i {
  font-size: 10px;
  color: var(--clr-bg);
}

/* Barber Selector */
.barber-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.barber-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.barber-card:hover {
  border-color: rgba(var(--clr-gold-rgb), 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.barber-card.selected {
  border-color: var(--clr-gold);
  background: rgba(var(--clr-gold-rgb), 0.06);
  box-shadow: 0 0 0 1px rgba(var(--clr-gold-rgb), 0.2);
}

.barber-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-white);
  transition: transform var(--transition-spring);
}

.barber-card:hover .barber-avatar {
  transform: scale(1.08);
}

.barber-avatar.no-pref {
  background: linear-gradient(135deg, #374151, #1f2937);
  font-size: var(--fs-xl);
}

.barber-card h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-1);
}

.barber-card p {
  font-size: 11px;
  color: var(--clr-text-muted);
  line-height: 1.4;
  margin-bottom: var(--space-2);
}

.barber-stars {
  font-size: 11px;
  color: var(--clr-gold);
  letter-spacing: 1px;
}

.barber-check {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  width: 22px;
  height: 22px;
  background: var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition-spring);
}

.barber-card.selected .barber-check {
  opacity: 1;
  transform: scale(1);
}

.barber-check i {
  font-size: 10px;
  color: var(--clr-bg);
}

/* Kalender */
.calendar-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.calendar-header h3 {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-white);
}

.cal-nav {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.cal-nav:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
  border-color: var(--clr-gold);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: var(--space-3);
}

.calendar-weekdays span {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: var(--space-2) 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  background: transparent;
  font-family: var(--ff-sans);
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: rgba(var(--clr-gold-rgb), 0.1);
  border-color: rgba(var(--clr-gold-rgb), 0.3);
  color: var(--clr-gold);
}

.cal-day.today {
  color: var(--clr-gold);
  font-weight: 700;
  border-color: rgba(var(--clr-gold-rgb), 0.3);
}

.cal-day.selected {
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-weight: 700;
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-gold);
}

.cal-day.disabled {
  color: rgba(255, 255, 255, 0.12);
  cursor: not-allowed;
  pointer-events: none;
}

.cal-day.empty {
  pointer-events: none;
}

/* Tijdslots */
.timeslots-wrapper {
  margin-bottom: var(--space-8);
}

.timeslots-wrapper h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-4);
}

.timeslots {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.timeslots-placeholder {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
}

.timeslot-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 400;
  padding: var(--space-2) var(--space-4);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.timeslot-btn:hover:not(.taken) {
  border-color: rgba(var(--clr-gold-rgb), 0.4);
  color: var(--clr-gold);
  background: rgba(var(--clr-gold-rgb), 0.06);
}

.timeslot-btn.selected {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-bg);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.timeslot-btn.taken {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Booking Samenvatting */
.booking-summary {
  background: rgba(var(--clr-gold-rgb), 0.04);
  border: 1px solid rgba(var(--clr-gold-rgb), 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.booking-summary h4 {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-gold);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--clr-border-light);
  gap: var(--space-4);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.summary-row span i {
  color: var(--clr-gold);
  width: 14px;
  text-align: center;
  font-size: 12px;
}

.summary-row strong {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-white);
  text-align: right;
}

.total-row {
  margin-top: var(--space-2);
  padding-top: var(--space-4) !important;
  border-top: 1px solid var(--clr-border) !important;
}

.total-row span {
  font-size: var(--fs-base) !important;
  font-weight: 600;
  color: var(--clr-text) !important;
}

.price-highlight {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl) !important;
  font-weight: 700 !important;
  color: var(--clr-gold) !important;
}

/* Navigatie knoppen stappen */
.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid var(--clr-border-light);
  margin-top: var(--space-2);
}

/* Booking Bevestiging */
.booking-confirmed {
  text-align: center;
  padding: var(--space-10) var(--space-6);
}

.confirmed-animation {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-8);
}

.confirmed-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: successPop var(--transition-spring) 200ms both;
  box-shadow: var(--shadow-gold);
}

.confirmed-circle i {
  font-size: var(--fs-3xl);
  color: var(--clr-bg);
}

.confirmed-rings {
  position: absolute;
  inset: 0;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid rgba(var(--clr-gold-rgb), 0.3);
  transform: translate(-50%, -50%) scale(0);
  animation: ringExpand 1s ease-out forwards;
}

.ring1 {
  width: 90px;
  height: 90px;
  animation-delay: 300ms;
}

.ring2 {
  width: 110px;
  height: 110px;
  animation-delay: 500ms;
}

.ring3 {
  width: 130px;
  height: 130px;
  animation-delay: 700ms;
}

@keyframes ringExpand {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

.booking-confirmed h2 {
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-4);
}

.confirmed-intro {
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto var(--space-6);
}

.confirmed-details {
  background: rgba(var(--clr-gold-rgb), 0.05);
  border: 1px solid rgba(var(--clr-gold-rgb), 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: left;
  margin-bottom: var(--space-8);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.confirmed-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--clr-border-light);
  gap: var(--space-4);
}

.confirmed-detail-row:last-child {
  border-bottom: none;
}

.confirmed-detail-row span:first-child {
  color: var(--clr-text-muted);
}

.confirmed-detail-row span:last-child {
  color: var(--clr-white);
  font-weight: 500;
  text-align: right;
}

.confirmed-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Booking Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: sticky;
  top: calc(68px + 88px + var(--space-6));
}

.sidebar-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.sidebar-card h4 {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-gold);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.sidebar-placeholder {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  font-style: italic;
  line-height: 1.6;
}

.sidebar-selected-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--clr-border-light);
  font-size: var(--fs-sm);
}

.sidebar-selected-item:last-child {
  border-bottom: none;
}

.sidebar-selected-item i {
  color: var(--clr-gold);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-selected-item span:first-of-type {
  flex: 1;
  color: var(--clr-text-muted);
}

.sidebar-selected-item strong {
  color: var(--clr-white);
  font-weight: 500;
  text-align: right;
}

.sidebar-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.sidebar-benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--clr-text);
  line-height: 1.4;
}

.sidebar-benefits i {
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-contact p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-4);
}

/* ── 20. Footer ── */
.footer {
  background: var(--clr-bg-dark);
  border-top: 1px solid var(--clr-border-light);
  padding-top: var(--space-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  margin-bottom: var(--space-16);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-4);
}

.footer-brand .footer-logo .logo-icon {
  color: var(--clr-gold);
}

.footer-brand p {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer h4 {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-5);
}

.footer-links ul,
.footer-hours ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--clr-gold);
  padding-left: var(--space-2);
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--clr-text-muted);
  gap: var(--space-4);
}

.footer-hours li span:last-child {
  color: var(--clr-text);
  white-space: nowrap;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--clr-text-muted);
}

.footer-contact i {
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  border-top: 1px solid var(--clr-border-light);
  padding: var(--space-6) 0;
}

.footer-bottom p {
  font-size: var(--fs-xs);
  font-weight: 300;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
}

.heart {
  color: #ef4444;
  font-size: var(--fs-sm);
  animation: heartBeat 1.6s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.3); }
}

/* ── 21. Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%) translateY(200%);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  z-index: 500;
  box-shadow: var(--shadow-lg);
  max-width: 620px;
  width: calc(100% - var(--space-8));
  transition: transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
}

.cookie-content i {
  font-size: var(--fs-xl);
  color: var(--clr-gold);
  flex-shrink: 0;
}

.cookie-content p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.cookie-content a {
  color: var(--clr-gold);
  text-decoration: underline;
  text-decoration-color: rgba(var(--clr-gold-rgb), 0.4);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}

.btn-cookie {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.btn-cookie.accept {
  background: var(--clr-gold);
  color: var(--clr-bg);
}

.btn-cookie.accept:hover {
  background: var(--clr-gold-light);
  box-shadow: var(--shadow-gold);
}

.btn-cookie.decline {
  background: transparent;
  border-color: var(--clr-border-light);
  color: var(--clr-text-muted);
}

.btn-cookie.decline:hover {
  border-color: rgba(var(--clr-gold-rgb), 0.3);
  color: var(--clr-text);
}

/* ── 22. Knoppen ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  color: var(--clr-bg);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(var(--clr-gold-rgb), 0.35);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--clr-gold);
  border-color: rgba(var(--clr-gold-rgb), 0.5);
}

.btn-outline:hover {
  background: rgba(var(--clr-gold-rgb), 0.08);
  border-color: var(--clr-gold);
  transform: translateY(-2px);
}

.btn-large {
  font-size: var(--fs-base);
  padding: var(--space-5) var(--space-10);
}

.btn-small {
  font-size: var(--fs-xs);
  padding: var(--space-2) var(--space-5);
}

/* ── 23. Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base),
              visibility var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
}

.lightbox-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: opacity 300ms ease;
}

.lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--clr-white);
  font-size: var(--fs-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.lightbox-close:hover {
  background: rgba(var(--clr-gold-rgb), 0.2);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--clr-white);
  font-size: var(--fs-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  backdrop-filter: blur(4px);
}

.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-bg);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--clr-text-muted);
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* ── 24. Modals ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base),
              visibility var(--transition-base);
  padding: var(--space-6);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border-light);
  border-radius: 50%;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
  transform: rotate(90deg);
}

/* ── 25. Responsive ── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-item.large {
    grid-row: span 1;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-img-accent {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .contact-form-wrapper {
    position: static;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .package-card.featured-package {
    transform: none;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - var(--space-3));
  }

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

@media (max-width: 768px) {
  :root {
    --navbar-h: 64px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--space-20) var(--space-8);
    transform: translateX(100%);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--clr-border-light);
    gap: var(--space-2);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: var(--fs-lg);
    letter-spacing: 0.08em;
    padding: var(--space-3) 0;
    width: 100%;
  }

  .nav-cta {
    margin-top: var(--space-4);
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: var(--space-4) var(--space-6) !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
  }

  .hero-title {
    font-size: clamp(var(--fs-4xl), 12vw, var(--fs-6xl));
  }

  .hero-stats {
    gap: var(--space-6);
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .section { padding: var(--space-16) 0; }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .testimonial-card {
    flex: 0 0 85%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-selector {
    grid-template-columns: 1fr;
  }

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

  .booking-sidebar {
    grid-template-columns: 1fr;
  }

  .lightbox-prev { left: -44px; }
  .lightbox-next { right: -44px; }

  .booking-step {
    padding: var(--space-6);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }
}

@media (max-width: 480px) {
  :root {
    --space-8: 1.25rem;
  }

  .container {
    padding: 0 var(--space-5);
  }

  .hero-content {
    padding-top: calc(var(--navbar-h) + var(--space-10));
  }

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

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

  .barber-selector {
    grid-template-columns: 1fr 1fr;
  }

  .progress-steps {
    gap: 0;
  }

  .progress-line {
    min-width: 20px;
  }

  .step-label {
    display: none;
  }

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(200%);
    max-width: 100%;
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .cookie-banner.visible {
    transform: translateY(0);
  }
}

/* ── 26. Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-gold-dark);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-gold);
}

/* ── 27. Selectie ── */
::selection {
  background: rgba(var(--clr-gold-rgb), 0.25);
  color: var(--clr-gold-light);
}

/* ── 28. Focus Accessibility ── */
:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── 29. Print ── */
@media print {
  .navbar,
  .cookie-banner,
  .cursor-dot,
  .cursor-outline,
  .page-loader {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    cursor: auto;
  }
}