/* ============================================
   VOLUME VIBES — Luxury Hair Extensions
   Black & Gold Edition
   ============================================ */

:root {
  --gold:        #C8A96E;
  --gold-light:  #E8C98E;
  --gold-dark:   #966E28;
  --black:       #060606;
  --bg:          #080808;
  --bg2:         #0F0F0F;
  --bg3:         #141414;
  --ivory:       #FAF7F2;
  --muted:       #888;
  --text:        #FAF7F2;
  --border:      rgba(200,169,110,0.18);
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max:         760px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* ============================================
   NAVIGATION
   ============================================ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .5s, backdrop-filter .5s, border-bottom .5s;
}

nav.scrolled {
  background: rgba(6,6,6,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* When mobile menu is open: nav becomes full-screen overlay */
nav.nav-open {
  height: 100dvh;
  background: rgba(6,6,6,0.99) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  overflow-y: auto;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo a { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo-img { height: 40px; width: auto; display: block; flex-shrink: 0; }

.nav-logo-text { display: flex; flex-direction: column; justify-content: center; }

.nav-logo-main {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.2;
}

.nav-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-item { position: relative; }

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.65);
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link svg { width: 11px; height: 11px; stroke: currentColor; transition: transform .3s; }
.nav-item.dd-open > .nav-link svg { transform: rotate(180deg); }
.nav-link:hover, .nav-link.active { color: var(--gold); }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 2px;
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}

.nav-item.dd-open .dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 18px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s, padding-left .2s;
}

.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--gold); background: rgba(200,169,110,0.05); padding-left: 24px; }

.nav-cta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.45);
  padding: 10px 22px;
  border-radius: 1px;
  transition: background .3s, color .3s, border-color .3s;
}

.nav-cta:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--ivory);
  transition: transform .35s, opacity .35s;
  transform-origin: center;
}

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

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */

.page-header .section-label { justify-content: center; margin-bottom: 20px; }

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.page-header h1 em { font-style: italic; color: var(--gold-light); }

.page-header p {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  margin-top: 24px;
  max-width: 520px;
  line-height: 1.85;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,6,6,0.70) 0%, rgba(6,6,6,0.58) 40%, rgba(6,6,6,0.95) 100%),
    url('/assets/img/homepage/salon-banner.jpg') center/cover no-repeat;
  transform: scale(1.05);
}

.hero-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: var(--max);
  padding: 0 32px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp .8s .3s forwards;
}

.hero-tag::before, .hero-tag::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(68px, 11vw, 130px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp .9s .5s forwards;
}

.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(250,247,242,0.6);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.9;
  opacity: 0;
  animation: fadeSlideUp .8s .7s forwards;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeSlideUp .8s .9s forwards;
}

/* Buttons */
.btn-gold {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 16px 40px;
  border-radius: 1px;
  border: 1px solid var(--gold);
  transition: background .3s, color .3s, transform .3s, box-shadow .3s;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,169,110,0.25);
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.6);
  background: transparent;
  padding: 15px 40px;
  border-radius: 1px;
  border: 1px solid rgba(200,169,110,0.2);
  transition: border-color .3s, color .3s, transform .3s;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold svg, .btn-outline svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.hero-scroll span {
  font-size: 8px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.4);
}

.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.5), transparent);
  animation: scrollLine 2s 1.5s infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 60s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.55);
}

.marquee-dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.35;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS — ALGEMEEN
   ============================================ */

.section { padding: 100px 0; }

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 16px;
}

.section-title em { font-style: italic; color: var(--gold-light); }

.section-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
}

.gold-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 32px 0;
}

/* ============================================
   USP PILLARS
   ============================================ */

.usp-section {
  background: var(--bg2);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1px;
  overflow: hidden;
}

.usp-item {
  padding: 48px 36px;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background .3s;
}

.usp-item:hover { background: var(--bg3); }

.usp-icon {
  width: 28px; height: 28px;
  stroke: var(--gold);
  fill: none;
  opacity: 0.75;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.usp-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 10px;
  line-height: 1.25;
}

.usp-content p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
}

/* ============================================
   ONS VERHAAL
   ============================================ */

.verhaal-section {
  background: var(--bg3);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.verhaal-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250,247,242,0.7);
  line-height: 2;
  margin: 28px 0 36px;
}

.verhaal-body strong {
  color: var(--gold);
  font-weight: 400;
}

.verhaal-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.verhaal-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.verhaal-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.verhaal-meta-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   EIGEN LIJN SECTION
   ============================================ */

.eigen-lijn {
  background: var(--bg);
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.eigen-lijn-visual {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 1px;
  overflow: hidden;
  background: linear-gradient(160deg, #0E0C08 0%, #1C1608 50%, #0A0806 100%);
  border: 1px solid var(--border);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eigen-lijn-text {
  text-align: center;
}

/* btn-gold is always display:flex — no override needed */

.eigen-lijn-badge {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 84px; height: 84px;
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  backdrop-filter: blur(8px);
}

.eigen-lijn-badge span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.eigen-lijn-badge span:last-child {
  font-size: 7px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.5);
}

.eigen-lijn-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.6;
  margin: 24px auto 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(200,169,110,0.3);
  border-bottom: 1px solid rgba(200,169,110,0.3);
  max-width: 680px;
}

.eigen-lijn-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 36px;
}

.eigen-lijn-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 40px;
}

.stat-item {
  background: var(--bg2);
  padding: 24px 20px;
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.4);
}

/* ============================================
   DIENSTEN
   ============================================ */

.diensten-section {
  background: var(--bg2);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.diensten-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1px;
  overflow: hidden;
}

.dienst-card {
  position: relative;
  background: var(--bg);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transition: background .3s;
  text-decoration: none;
  color: inherit;
}

/* Alleen echte hele-kaart-links tonen klikbare hover/cursor op de hele kaart */
a.dienst-card { cursor: pointer; }
a.dienst-card:hover { background: var(--bg3); }
a.dienst-card:hover .dienst-arrow { transform: translateX(6px); color: var(--gold); }

/* Kaarten waarbij alleen het pijltje een link is: hover-feedback alleen op dat pijltje */
.dienst-arrow a {
  display: flex;
  color: inherit;
  transition: transform .3s, color .3s;
}
.dienst-arrow a:hover { transform: translateX(6px); color: var(--gold); }

.dienst-left {}

.dienst-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 8px;
}

.dienst-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 8px;
  line-height: 1.2;
}

.dienst-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.dienst-arrow {
  color: rgba(200,169,110,0.4);
  transition: transform .3s, color .3s;
  flex-shrink: 0;
}

.dienst-arrow svg { width: 20px; height: 20px; }

/* ============================================
   BEFORE / AFTER
   ============================================ */

.before-after {
  background: var(--bg);
  padding: 100px 0;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 48px auto 0;
  max-width: 840px;
  border: 1px solid var(--border);
  border-radius: 1px;
  overflow: hidden;
}

.ba-item {
  position: relative;
  aspect-ratio: 3/4;
  height: auto;
  overflow: hidden;
}

.ba-item-bg {
  position: absolute;
  inset: 0;
  transition: transform .6s var(--transition);
}

.ba-before .ba-item-bg {
  background: linear-gradient(160deg, #151210 0%, #201a10 100%);
}

.ba-after .ba-item-bg {
  background: linear-gradient(160deg, #181408 0%, #2C2208 100%);
}

.ba-item:hover .ba-item-bg { transform: scale(1.04); }

.ba-item-label {
  position: absolute;
  top: 20px; left: 20px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 10px;
  border-radius: 1px;
}

.ba-after .ba-item-label { color: var(--gold); border-color: rgba(200,169,110,0.4); }

/* ============================================
   FAQ
   ============================================ */

.faq-section {
  background: var(--bg2);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.faq-grid {
  border: 1px solid var(--border);
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ivory);
  list-style: none;
  transition: color 0.2s;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--gold); }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.2s;
}

details[open] > .faq-question::after { content: '−'; }

.faq-answer {
  padding: 0 32px 24px;
  color: rgba(250,247,242,0.7);
  font-size: 14px;
  line-height: 1.9;
  max-width: 760px;
}

.faq-answer a { color: var(--gold); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .faq-question { padding: 18px 20px; font-size: 0.95rem; }
  .faq-answer { padding: 0 20px 20px; }
}

/* ============================================
   STATS
   ============================================ */

.stats-section {
  background: var(--bg2);
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}

.stats-item {
  background: var(--bg2);
  padding: 48px 32px;
  text-align: center;
  transition: background .3s;
}

.stats-item:hover { background: var(--bg3); }

.stats-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: var(--bg);
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1px;
  overflow: hidden;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg2);
  padding: 36px 32px;
  transition: background .3s;
}

.testimonial-card:hover { background: var(--bg3); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 12px; height: 12px;
  fill: var(--gold-dark);
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: rgba(250,247,242,0.85);
  line-height: 1.75;
  margin-bottom: 20px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold);
}

.testimonial-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
}

.testimonial-date {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--bg2);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.cta-banner-eyebrow {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-banner h2 em { font-style: italic; color: var(--gold-light); }

.cta-banner p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.9;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 14px;
}

.footer-nap {
  font-style: normal;
  font-size: 12px;
  font-weight: 300;
  color: rgba(136,136,136,0.5);
  line-height: 2;
  margin-top: 12px;
}
.footer-nap a {
  color: rgba(136,136,136,0.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-nap a:hover { color: var(--gold); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--ivory); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 48px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: rgba(136,136,136,0.45);
  letter-spacing: 0.04em;
}

.footer-copy a { color: inherit; transition: color .2s; }
.footer-copy a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}

.social-btn svg { width: 14px; height: 14px; fill: currentColor; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   WHATSAPP WIDGET
   ============================================ */

.wa-widget {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 1;
  transition: opacity .25s;
}

/* Voorkomt overlap met de social iconen in de footer op smallere vensterbreedtes */
.wa-widget-hidden {
  opacity: 0;
  pointer-events: none;
}

.wa-popup {
  width: 290px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity .3s, transform .3s;
}

.wa-popup.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }

.wa-popup-head {
  background: #0E0E0E;
  border-bottom: 1px solid var(--border);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-popup-icon {
  width: 32px; height: 32px;
  background: rgba(200,169,110,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-popup-icon svg { width: 16px; height: 16px; fill: var(--gold); }

.wa-popup-close {
  background: none; border: none;
  color: var(--muted); font-size: 14px;
  cursor: pointer; transition: color .2s;
}
.wa-popup-close:hover { color: var(--ivory); }

.wa-popup-body { padding: 18px; }

.wa-popup-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.4;
  margin-bottom: 14px;
}

.wa-popup-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 400;
  transition: background .2s;
  cursor: pointer;
}

.wa-popup-cta:hover { background: #1ebe57; color: white; }
.wa-popup-cta svg { width: 17px; height: 17px; fill: white; flex-shrink: 0; }
.wa-popup-cta-arrow { margin-left: auto; font-size: 17px; }

.wa-toggle {
  width: 52px; height: 52px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform .3s, border-color .3s, background .3s;
}

.wa-toggle:hover {
  transform: scale(1.08);
  border-color: var(--gold);
  background: var(--bg3);
}

.wa-toggle svg { width: 22px; height: 22px; fill: var(--gold); }
.wa-ico-open { display: none; fill: none !important; stroke: var(--ivory); stroke-width: 2.5; }
.wa-toggle.open .wa-ico-default { display: none; }
.wa-toggle.open .wa-ico-open { display: block; }

/* ============================================
   PAGE HEADER (subpages)
   ============================================ */

.page-header {
  margin-top: 76px;
  padding: 100px 24px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-header-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,6,6,0.3) 0%, rgba(6,6,6,0.75) 100%),
    linear-gradient(160deg, #0E0C08 0%, #1C1608 100%);
  background-size: cover;
  background-position: center;
}

.page-header-inner {
  position: relative; z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.breadcrumb {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(200,169,110,0.4);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.breadcrumb a { color: inherit; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}

/* ============================================
   CONSISTENCY — everything in section-inner centered
   ============================================ */

/* MASTER RULE: all content inside section-inner is centered */
.section-inner {
  text-align: center;
}

/* Direct-child buttons (anchors) inside section-inner */
.section-inner > a,
.section-inner > div[style] > a {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* page-header subtitle */
.page-header p {
  margin-left: auto;
  margin-right: auto;
}

/* Direct-child paragraphs inside section-inner: center the block itself */
/* !important overrides inline margin shorthand (e.g. margin:24px 0 40px) */
.section-inner > p {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Flex rows inside section-inner: center horizontally */
.section-inner > div[style*="display:flex"],
.section-inner > div[style*="display: flex"] {
  justify-content: center;
}

/* USP section header spacing */
.usp-section > .section-inner:first-child {
  margin-bottom: 48px;
}

/* USP item cards: keep icon + text left-aligned inside the card */
.usp-item {
  align-items: flex-start;
  text-align: left;
}

/* Service cards: left-aligned (arrow on right) */
.dienst-card,
.dienst-card h3,
.dienst-card p,
.dienst-tag {
  text-align: left;
}

/* Testimonials: left-aligned inside card */
.testimonial-card,
.testimonial-text,
.testimonial-author {
  text-align: left;
}

/* Verhaal body prose stays left (stronger specificity) */
.verhaal-section .verhaal-body {
  text-align: left;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.verhaal-meta {
  justify-content: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Diensten header — stack vertically, center */
.diensten-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--transition), transform .8s var(--transition);
}

.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 860px) {

  nav { padding: 0 20px; }

  /* When menu opens: nav becomes the full-screen overlay */
  nav.nav-open {
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(6,6,6,0.99) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
  }

  /* Logo pinned top-left when open */
  nav.nav-open .nav-logo {
    position: absolute;
    top: 22px; left: 20px;
  }

  /* Hamburger (X) pinned top-right when open */
  nav.nav-open .hamburger {
    position: absolute;
    top: 26px; right: 20px;
  }

  /* The menu list */
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 380px;
    padding: 0 20px 40px;
    gap: 0;
    overflow-y: auto;
    max-height: 80vh;
  }
  .nav-menu.open { display: flex; }

  .nav-item { width: 100%; text-align: center; }

  .nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 0.06em;
    padding: 18px 0;
    color: var(--ivory);
    border-bottom: 1px solid var(--border);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: color .2s;
  }
  .nav-link svg { width: 16px; height: 16px; transition: transform .3s; }
  .nav-item.open > .nav-link { color: var(--gold); }
  .nav-item.open > .nav-link svg { transform: rotate(180deg); }

  #navMenu > li:last-child {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 28px;
  }

  .nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.2em;
    padding: 14px 32px;
    border-radius: 0;
    margin-top: 0;
  }

  .hamburger { display: flex; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: unset;
    display: none;
    padding: 0;
    text-align: center;
  }
  .nav-item.open .dropdown { display: block; }
  .dropdown a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    letter-spacing: 0.1em;
    color: rgba(200,169,110,0.55);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    text-align: center;
  }
  .dropdown a:hover { color: var(--gold); }
  .section { padding: 72px 0; }
  .section-inner { padding: 0 20px; }
  .ba-pair { grid-template-columns: 1fr 1fr; }
  .ba-item { aspect-ratio: 3/4; height: auto; }
  .stats-grid { margin: 0 20px; max-width: calc(100% - 40px); }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .footer-bottom { padding: 24px 20px 0; }
  .usp-grid { grid-template-columns: 1fr; }
  .eigen-lijn-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .page-header {
    padding: 80px 24px 60px;
    text-align: center;
    align-items: center;
  }
  .page-header .section-label {
    justify-content: center;
  }
  .page-header h1,
  .page-header p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero { height: 75vh; min-height: 560px; }
  .hero-scroll { bottom: 16px; }
  .hero h1 { font-size: clamp(52px, 14vw, 80px); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .eigen-lijn-stats { grid-template-columns: 1fr; }
  .wa-widget { bottom: 16px; right: 16px; }
  .page-header { padding: 70px 20px 50px; }
}
