/* ============================================================
   DE VRIENDSCHAP KAPSALON — Main Stylesheet
   Language: Dutch (NL)
   Design: Scandinavian/Amsterdam Premium Salon Hybrid
   ============================================================ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* Colors */
  --clr-bg:          #FAF8F5;
  --clr-bg-alt:      #F4F0EA;
  --clr-bg-card:     #FFFFFF;
  --clr-cream:       #EDE8DF;
  --clr-gold:        #C9A96E;
  --clr-gold-light:  #E2C99A;
  --clr-gold-muted:  #D4B483;
  --clr-charcoal:    #2C2B28;
  --clr-text:        #3D3C39;
  --clr-text-muted:  #7A7872;
  --clr-text-light:  #A8A49E;
  --clr-border:      #E8E3DA;
  --clr-white:       #FFFFFF;

  /* Typography */
  --font-display:    'Playfair Display', Georgia, serif;
  --font-heading:    'Manrope', sans-serif;
  --font-body:       'Manrope', sans-serif;

  /* Spacing */
  --space-xs:   0.375rem;
  --space-sm:   0.75rem;
  --space-md:   1.25rem;
  --space-lg:   2rem;
  --space-xl:   3rem;
  --space-2xl:  4.5rem;
  --space-3xl:  6rem;

  /* Border radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(44, 43, 40, 0.06);
  --shadow-md:  0 8px 32px rgba(44, 43, 40, 0.10);
  --shadow-lg:  0 20px 60px rgba(44, 43, 40, 0.14);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.25);

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-base:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1240px;
  --nav-height: 64px;
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-charcoal);
}

.display-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-charcoal);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ─── LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-3xl) 0; }
.section--alt { background-color: var(--clr-bg-alt); }

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

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: #B8924A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.4);
}

.btn-outline {
  border: 1.5px solid var(--clr-charcoal);
  color: var(--clr-charcoal);
  background: transparent;
}
.btn-outline:hover {
  background: var(--clr-charcoal);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--clr-gold);
  padding: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-gold);
  transition: width var(--transition-base);
}
.btn-ghost:hover::after { width: 100%; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--clr-border), var(--shadow-sm);
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--clr-border), var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.navbar__logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .navbar__logo {
    height: 42px;
  }
}

.navbar__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.navbar__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--clr-text);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-gold);
  transition: width var(--transition-base);
}

.navbar__link:hover { color: var(--clr-charcoal); }
.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }
.navbar__link.active { color: var(--clr-charcoal); font-weight: 600; }

.navbar__lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.navbar__lang:hover { border-color: var(--clr-gold); color: var(--clr-gold); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.navbar__actions .btn-primary {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .navbar__nav { gap: 0.875rem; }
  .navbar__link { font-size: 0.78rem; }
  .navbar__actions .btn-primary {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-charcoal);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 999;
  flex-direction: column;
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-xl);
  gap: var(--space-md);
}

.navbar__mobile.open { display: flex; }

.navbar__mobile-link {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: var(--space-md);
  display: block;
  transition: color var(--transition-fast);
}
.navbar__mobile-link:hover { color: var(--clr-gold); }

.navbar__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: var(--space-md);
}

.navbar__mobile-book {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.navbar__mobile-lang {
  display: flex !important;
  align-self: flex-start;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  padding-top: var(--nav-height);
  overflow: hidden;
  position: relative;
  background-image: url('../images/hero1.jpg');
  background-size: cover;
  background-position: center center;
  align-items: center;
}

/* Dark overlay for readability on desktop */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 8, 6, 0.82) 0%,
    rgba(10, 8, 6, 0.62) 38%,
    rgba(10, 8, 6, 0.35) 62%,
    rgba(10, 8, 6, 0.18) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--space-3xl) var(--space-md) var(--space-3xl) max(var(--space-lg), calc((100vw - var(--max-width)) / 2 + var(--space-lg)));
  position: relative;
  z-index: 2;
  max-width: 100%;
  min-height: calc(100svh - var(--nav-height));
}

.hero__panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
  width: 100%;
}

/* Hero text on dark overlay */
.hero .hero__badge {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201, 169, 110, 0.35);
  color: var(--clr-gold-light);
}

.hero .hero__title { color: #fff; }
.hero .hero__title em { color: var(--clr-gold-light); }
.hero .hero__description { color: rgba(237, 232, 223, 0.85); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-cream);
  border: 1px solid var(--clr-gold-light);
  color: var(--clr-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  width: fit-content;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  color: var(--clr-charcoal);
  line-height: 1.06;
  margin-bottom: var(--space-md);
  max-width: 16ch;
}

.hero__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--clr-gold);
}

.hero__description {
  font-size: 1.0625rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 42ch;
  margin-bottom: var(--space-lg);
}

.hero__logo {
  width: min(220px, 58vw);
  height: auto;
  display: block;
  margin-top: -15px;
  margin-bottom: 0.3rem;
  filter: drop-shadow(0 2px 16px rgba(201, 169, 110, 0.22));
  opacity: 0.97;
}

.hero__tagline {
  font-size: 1.25rem;
  line-height: 1.45;
  color: rgba(237, 232, 223, 0.92);
  max-width: 34ch;
  margin-bottom: 0;
  font-weight: 300;
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.04em;
  font-style: italic;
}

.hero__cta-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}

.hero__cta-row--primary {
  margin-bottom: 0.875rem;
  flex-wrap: nowrap;
}

.hero__cta-row--primary .btn {
  font-size: 0.875rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition-base);
}

/* Primary — WhatsApp (brand gold, not green) */
.hero .btn-whatsapp {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  color: var(--clr-charcoal);
  border: 1px solid rgba(201, 169, 110, 0.45);
  box-shadow: var(--shadow-gold);
}

.hero .btn-whatsapp:hover {
  background: linear-gradient(135deg, #D4BA82 0%, #B8924A 100%);
  color: var(--clr-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.38);
}

/* Secondary — phone */
.hero .hero__btn-call {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  border: 1px solid rgba(201, 169, 110, 0.45);
  color: var(--clr-charcoal);
  box-shadow: var(--shadow-gold);
}

.hero .hero__btn-call:hover {
  background: linear-gradient(135deg, #D4BA82 0%, #B8924A 100%);
  color: var(--clr-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.38);
}

/* Utility — opening hours & route */
.hero__cta-row--secondary .hero__quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.05rem;
  min-height: 2.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 169, 110, 0.32);
  background: rgba(20, 18, 15, 0.28);
  color: rgba(237, 232, 223, 0.88);
  font-size: 0.8125rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: var(--transition-base);
}

.hero__cta-row--secondary .hero__quick-link:hover {
  background: rgba(201, 169, 110, 0.14);
  border-color: rgba(226, 201, 154, 0.55);
  color: var(--clr-cream);
  transform: translateY(-1px);
}

/* Hero image side */
.hero__image-side {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  height: 100%;
}

.hero__image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-cream) 0%, #DDD5C8 100%);
}

/* Placeholder for hero image */
.hero__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  text-align: center;
}

.hero__img-placeholder svg {
  opacity: 0.3;
  width: 60px;
  height: 60px;
}

.hero__image-side img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero image side — hidden on all sizes since we use background-image */
.hero__image-side { display: none !important; }

/* Hero decorative dot */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 45%;
  width: 3px;
  height: 3px;
  background: var(--clr-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(201,169,110,0.08), 0 0 0 24px rgba(201,169,110,0.04);
  z-index: 1;
  pointer-events: none;
}

/* ─── HOMEPAGE LOGO DIVIDER ──────────────────────────────── */
.homepage-logo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem var(--space-md);
}

.homepage-logo-divider img {
  width: min(300px, calc(100vw - 3rem));
  height: auto;
  opacity: 0.85;
  display: block;
  margin: 0 auto;
}

/* ─── SERVICES OVERVIEW ──────────────────────────────────── */
.services-overview {
  background: var(--clr-bg-alt);
}

.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.service-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--clr-border);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold-light), var(--clr-gold));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--clr-charcoal);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.service-card__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-gold);
}

/* ─── ABOUT PREVIEW ──────────────────────────────────────── */
.about-preview {
  background: var(--clr-bg);
}

.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-preview__images {
  position: relative;
  height: 540px;
}

.about-preview__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 78%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--clr-cream), #D5CAB9);
  box-shadow: var(--shadow-lg);
}

.about-preview__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 48%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #C8BBA8, var(--clr-cream));
  box-shadow: var(--shadow-md);
  border: 4px solid var(--clr-bg);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--clr-text-light);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
}

.img-placeholder svg {
  opacity: 0.35;
  width: 40px;
  height: 40px;
}

.about-preview__years-badge {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  background: var(--clr-charcoal);
  color: var(--clr-white);
  border-radius: var(--radius-full);
  width: 96px;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-preview__years-num {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--clr-gold);
}

.about-preview__years-text {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
  color: rgba(255,255,255,0.75);
}

.about-preview__content {
  padding-right: var(--space-md);
}

.about-preview__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.about-feature__dot {
  width: 20px;
  height: 20px;
  background: var(--clr-cream);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature__dot::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clr-gold);
  border-radius: 50%;
}

.about-feature__text {
  font-size: 0.9375rem;
  color: var(--clr-text);
  line-height: 1.5;
}

/* ─── GALLERY PREVIEW ────────────────────────────────────── */
.gallery-preview {
  background: var(--clr-bg-alt);
}

.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.gallery-preview__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-preview__item:first-child {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-preview__item:nth-child(4) {
  grid-row: span 2;
}

.gallery-item-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-text-light);
  text-align: center;
  transition: transform var(--transition-slow);
}

.gallery-item-bg:nth-child(odd) { background: linear-gradient(145deg, var(--clr-cream), #CEC4B6); }
.gallery-item-bg:nth-child(even) { background: linear-gradient(145deg, #D4C9BA, var(--clr-cream)); }

.gallery-preview__item:hover .gallery-item-bg { transform: scale(1.05); }

.gallery-preview__overlay {
  display: none;
}

.gallery-preview__item:hover .gallery-preview__overlay { opacity: 0; }

.gallery-preview__caption {
  color: var(--clr-white);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ─── BOOKING CTA ────────────────────────────────────────── */
.booking-cta {
  background: var(--clr-bg);
  color: var(--clr-text);
  padding: var(--space-lg) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.booking-cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.booking-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.booking-cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--clr-charcoal);
  margin-bottom: var(--space-sm);
}

.booking-cta__title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--clr-gold);
  font-weight: 400;
}

.booking-cta__subtitle {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  font-size: 1.0625rem;
}

.booking-cta__buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--clr-white);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-base);
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--clr-white);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-base);
  background: transparent;
}
.btn-outline-white:hover {
  border-color: var(--clr-white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 1.5px solid rgba(44,43,40,0.35);
  color: var(--clr-charcoal);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-base);
  background: transparent;
}
.btn-outline-dark:hover {
  border-color: var(--clr-charcoal);
  background: rgba(44,43,40,0.06);
  transform: translateY(-2px);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #1E1D1A;
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--clr-white);
  margin-bottom: 0.35rem;
}

.footer__brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 28ch;
}

.footer__vriendschap-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--clr-gold);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer__vriendschap-link:hover {
  color: var(--clr-gold-light);
}

.footer__socials {
  display: flex;
  gap: var(--space-xs);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer__social-link:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--clr-white); }

.footer__hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 1rem;
}

.footer__hours-day { color: rgba(255,255,255,0.5); }
.footer__hours-time { color: rgba(255,255,255,0.8); font-weight: 500; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer__bottom-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}
.footer__bottom-link:hover { color: rgba(255,255,255,0.7); }

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--clr-bg-alt);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dark overlay when a bg image is present */
.page-hero--has-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,18,15,0.55) 0%, rgba(20,18,15,0.45) 100%);
  pointer-events: none;
  z-index: 0;
}

.page-hero--has-bg .container {
  position: relative;
  z-index: 1;
}

.page-hero--has-bg .section-label {
  color: rgba(201,169,110,0.95);
}

.page-hero--has-bg .page-hero__title {
  color: #fff;
}

.page-hero--has-bg .page-hero__subtitle {
  color: rgba(255,255,255,0.8);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--clr-charcoal);
  margin-bottom: var(--space-sm);
  position: relative;
}

.page-hero__subtitle {
  font-size: 1.0625rem;
  color: var(--clr-text-muted);
  max-width: 50ch;
  margin: 0 auto;
  position: relative;
}

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.brand-story__inner {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}

.brand-story__lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-charcoal);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  border-left: 3px solid var(--clr-gold);
}

.brand-story__body,
.brand-story__text {
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

.section-title__accent {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--clr-gold);
}

.brand-story__rule {
  width: 56px;
  height: 2px;
  background: var(--clr-gold);
  border: 0;
  margin: var(--space-lg) 0 var(--space-sm);
}

.brand-story__signature {
  color: var(--clr-charcoal);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.quote-card {
  position: relative;
  background: var(--clr-charcoal);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem 2.5rem;
  box-shadow: var(--shadow-md);
  align-self: center;
  overflow: hidden;
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 0.25rem;
  left: 1.75rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--clr-gold);
}

.quote-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--clr-gold-light);
  margin-bottom: 1.5rem;
}

.quote-card__cite {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

@media (max-width: 768px) {
  .quote-card { padding: 3rem 1.75rem 1.75rem; }
  .quote-card__text { font-size: 1.25rem; }
}

.route-page__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.25fr;
  gap: var(--space-xl);
  align-items: stretch;
}

.route-page__info {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.route-page__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.5rem;
}

.route-page__address {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--clr-charcoal);
  margin-bottom: 1.5rem;
}

.route-page__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  min-height: 440px;
  height: 100%;
}

.route-hours-summary {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--clr-border);
}

.route-hours-summary__text {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.route-hours-summary__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-gold);
}

.route-hours-summary__link:hover {
  text-decoration: underline;
}

.contact__grid--single {
  grid-template-columns: 1fr !important;
  max-width: none;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 160px;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.contact-card:hover {
  border-color: var(--clr-gold-light);
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.contact-card__value {
  font-size: 1rem;
  color: var(--clr-charcoal);
  font-weight: 600;
  line-height: 1.5;
}

.contact-card__value a {
  color: inherit;
  transition: color var(--transition-fast);
}

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

.contact-card__meta {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.contact-card--wide {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-card--wide {
    grid-column: auto;
  }
}

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.philosophy-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
  text-align: center;
}

.philosophy-card__num {
  font-size: 2.5rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.philosophy-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--clr-charcoal);
}

.philosophy-card__text {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* Team */
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: var(--transition-base);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.team-card__photo {
  height: 300px;
  background: linear-gradient(145deg, var(--clr-cream), #CEC4B6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-light);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

.team-card__info {
  padding: var(--space-md);
}

.team-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.825rem;
  color: var(--clr-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.team-card__bio {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* ─── SERVICES PAGE ──────────────────────────────────────── */
.services-tabs {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: var(--space-sm);
}

.services-tab {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  transition: var(--transition-fast);
  border: 1.5px solid transparent;
}

.services-tab:hover { color: var(--clr-charcoal); border-color: var(--clr-border); }
.services-tab.active {
  background: var(--clr-charcoal);
  color: var(--clr-white);
  border-color: var(--clr-charcoal);
}

.services-panel { display: none; }
.services-panel.active { display: block; }

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

.price-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-gold-light);
}

.price-card--featured {
  border-color: var(--clr-gold);
  background: linear-gradient(145deg, #FBF9F5, var(--clr-bg-card));
}

.price-card--featured::before {
  content: 'Populair';
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--clr-gold);
  color: var(--clr-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

.price-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.5rem;
}

.price-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 0.5rem;
}

.price-card__desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.price-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-sm);
}

.price-card__price {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--clr-charcoal);
}

.price-card__duration {
  font-size: 0.775rem;
  color: var(--clr-text-light);
  font-weight: 500;
}

/* ─── GALLERY PAGE ───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.gallery-grid__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--clr-cream);
}

.gallery-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

.gallery-grid__item:hover .gallery-grid__img {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }

  .gallery-grid__item {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 479px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery color blocks for placeholder */
.gb-1 { background: linear-gradient(145deg, #E8E0D4, #D4C9B8); }
.gb-2 { background: linear-gradient(145deg, #D9D1C4, #C8BCA9); }
.gb-3 { background: linear-gradient(145deg, #E2DAD0, #CFCABC); }
.gb-4 { background: linear-gradient(145deg, #DEDAD3, #C9C4B5); }
.gb-5 { background: linear-gradient(145deg, #EAE3D8, #D6CEBC); }
.gb-6 { background: linear-gradient(145deg, #D6D0C6, #C4BFB1); }
.gb-7 { background: linear-gradient(145deg, #E5DDD2, #D2CAB8); }
.gb-8 { background: linear-gradient(145deg, #DED7CC, #CBC5B8); }

.gallery-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-light);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem;
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-block {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-block__icon {
  width: 44px;
  height: 44px;
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-block__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 4px;
}

.contact-block__value {
  font-size: 0.9375rem;
  color: var(--clr-text);
  font-weight: 500;
  line-height: 1.5;
}

.hours-table {
  width: 100%;
  font-size: 0.875rem;
}

.hours-table tr { border-bottom: 1px solid var(--clr-border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.5rem 0; }
.hours-table td:first-child { color: var(--clr-text-muted); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--clr-charcoal); }

.map-placeholder {
  height: 240px;
  background: linear-gradient(135deg, var(--clr-cream), #D8D0C5);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  gap: 0.75rem;
  border: 1px solid var(--clr-border);
}

.map-placeholder svg { opacity: 0.3; width: 36px; height: 36px; }

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-link-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition-base);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text);
}

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

/* Contact form */
.contact-form {
  background: var(--clr-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.contact-form__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-bg);
  color: var(--clr-charcoal);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* ─── SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── DIVIDER ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-light), transparent);
  margin: 0;
}

/* ─── INCLUSIVE BANNER ───────────────────────────────────── */
.inclusive-banner {
  background: var(--clr-cream);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border: 1px solid var(--clr-gold-light);
  margin: var(--space-xl) 0 0;
}

.inclusive-banner__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: var(--space-xs);
}

.inclusive-banner__text {
  color: var(--clr-text-muted);
  font-size: 0.9375rem;
  max-width: 50ch;
  margin: 0 auto;
}

/* ─── SCROLL TOP BUTTON ──────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  background: var(--clr-charcoal);
  color: var(--clr-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition-base);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--clr-gold);
  transform: translateY(-3px);
}

/* ─── DE VRIENDSCHAP BANNER ─────────────────────────────── */
.vriendschap-banner {
  background: #000000;
}

.vriendschap-banner__inner {
  padding: 4rem 8%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.vriendschap-banner__content {
  max-width: 100%;
}

.vriendschap-banner__label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a0896a;
  margin-bottom: 0.5rem;
}

.vriendschap-banner__title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.vriendschap-banner__body {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vriendschap-banner__cta {
  display: inline-flex;
}

@media (max-width: 768px) {
  .vriendschap-banner__inner {
    padding: 3rem 8%;
  }

  .vriendschap-banner__title {
    font-size: 1.8rem;
  }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background-image: url('../images/hero1.jpg');
    background-size: cover;
    background-position: center center;
  }
  .hero::after {
    background: linear-gradient(
      to bottom,
      rgba(15, 12, 8, 0.60) 0%,
      rgba(15, 12, 8, 0.50) 60%,
      rgba(15, 12, 8, 0.40) 100%
    );
  }
  .hero__content {
    padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
    align-items: center;
    text-align: center;
  }
  .hero__panel {
    align-items: center;
    max-width: 100%;
  }
  .hero__tagline { margin-left: auto; margin-right: auto; }
  .hero__cta-row { justify-content: center; }
  .hero__cta-row--primary .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero__cta-row--secondary .hero__quick-link { flex: 1; min-width: 140px; max-width: 200px; justify-content: center; }
  /* Text colours already white from base rules */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 900px) {
  .services-overview__grid,
  .gallery-preview__grid { grid-template-columns: 1fr 1fr; }
  .gallery-preview__grid { grid-template-rows: auto; }
  .gallery-preview__item:first-child,
  .gallery-preview__item:nth-child(4) { grid-row: auto; grid-column: auto; }
  .about-preview__inner,
  .brand-story__inner,
  .contact__grid,
  .route-page__grid { grid-template-columns: 1fr; }
  .about-preview__images { display: none; }
  .team__grid,
  .philosophy__grid { grid-template-columns: 1fr 1fr; }
  .services-price-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .team-card__photo { height: 220px; }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
  }
  .navbar__nav { display: none; }
  .navbar__inner {
    justify-content: flex-start;
  }
  .navbar__actions {
    margin-left: auto;
  }
  .navbar__actions .btn { display: none; }
  .navbar__actions .navbar__lang { display: flex; }
  .navbar__hamburger {
    display: flex;
    margin-left: var(--space-sm);
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .services-overview__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .philosophy__grid { grid-template-columns: 1fr; }
  .services-price-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .social-links { flex-direction: column; }
}

@media (max-width: 480px) {
  :root { --space-3xl: 4rem; }
  .booking-cta__buttons { flex-direction: column; align-items: center; }
  .contact-form { padding: var(--space-md); }
}

/* ─── LOYALTY BANNER ─────────────────────────────────────── */
.loyalty-banner {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--clr-gold) 0%, #B8924A 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(201,169,110,0.35);
}
.loyalty-banner__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.loyalty-banner__text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
}
.loyalty-banner__free {
  background: rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 0.1rem 0.6rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.loyalty-banner__sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}

/* ─── SERVICE CARD PRICE — more prominent ────────────────── */
.service-card__price {
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-display);
  font-size: 2rem !important;
  font-weight: 700;
  font-style: normal;
  color: var(--clr-gold) !important;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ─── CONTACT CTA SECTION (replaces booking-cta) ────────── */
.contact-cta {
  background: var(--clr-charcoal);
  color: var(--clr-white);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

/* Map side */
.contact-cta__map-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-cta__map-container {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  flex: 1;
}
.contact-cta__directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
  letter-spacing: 0.01em;
}
.contact-cta__directions-btn:hover {
  background: #B8924A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.45);
}

/* Info side */
.contact-cta__info-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem 2.25rem;
}
.contact-cta__block-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}
.contact-cta__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 1.5rem 0;
}

/* WhatsApp button large */
.btn-whatsapp--large {
  font-size: 1.05rem !important;
  padding: 1rem 2rem !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3) !important;
  width: 100%;
  justify-content: center;
}

/* Hours table */
.contact-cta__hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-cta__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}
.contact-cta__hours-row--open {
  background: rgba(255,255,255,0.06);
}
.contact-cta__hours-day {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.contact-cta__hours-time {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.contact-cta__hours-time--closed {
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* ─── RESPONSIVE UPDATES ─────────────────────────────────── */
@media (max-width: 900px) {
  .contact-cta__grid {
    grid-template-columns: 1fr;
  }
  .contact-cta__map-container {
    height: 280px;
  }
  .loyalty-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}
@media (max-width: 600px) {
  .contact-cta__info-side {
    padding: 1.5rem;
  }
}

/* ══════════════════════════════════════════════════════════
   CONTACT CTA — WHITE THEME (override dark version)
   ══════════════════════════════════════════════════════════ */
.contact-cta {
  background: var(--clr-bg) !important;
  color: var(--clr-charcoal) !important;
}
.contact-cta::before { display: none; }

.contact-cta .section-title {
  color: var(--clr-charcoal) !important;
}
.contact-cta .section-label {
  color: var(--clr-gold) !important;
}
.contact-cta > .container > .text-center > p {
  color: var(--clr-text-muted) !important;
}

/* Info side — light card */
.contact-cta__info-side {
  background: var(--clr-white) !important;
  border: 1.5px solid var(--clr-border) !important;
  box-shadow: var(--shadow-md);
}
.contact-cta__block-title {
  color: var(--clr-gold) !important;
}
.contact-cta__divider {
  background: var(--clr-border) !important;
}

/* Hours */
.contact-cta__hours-row--open {
  background: var(--clr-bg-alt) !important;
}
.contact-cta__hours-day {
  color: var(--clr-text) !important;
}
.contact-cta__hours-time {
  color: var(--clr-charcoal) !important;
}
.contact-cta__hours-time--closed {
  color: var(--clr-text-light) !important;
}

/* Address block */
.contact-cta__address-block p {
  color: var(--clr-text-muted) !important;
}
.contact-cta__address-block a {
  color: var(--clr-gold) !important;
}

/* WhatsApp block text */
.contact-cta__whatsapp-block > p {
  color: var(--clr-text-muted) !important;
}

/* Map */
.contact-cta__map-container {
  border: 1.5px solid var(--clr-border) !important;
  box-shadow: var(--shadow-md) !important;
}

/* Directions button */
.contact-cta__directions-btn {
  background: var(--clr-charcoal) !important;
  color: #fff !important;
  box-shadow: var(--shadow-md) !important;
}
.contact-cta__directions-btn:hover {
  background: var(--clr-gold) !important;
}

/* ══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — comprehensive overrides
   ══════════════════════════════════════════════════════════ */

/* ── 768px and below ── */
@media (max-width: 768px) {

  /* Nav */
  .navbar__nav { display: none; }
  .navbar__inner {
    justify-content: flex-start;
  }
  .navbar__actions {
    margin-left: auto;
  }
  .navbar__actions .btn { display: none; }
  .navbar__actions .navbar__lang { display: flex; }
  .navbar__hamburger {
    display: flex;
    margin-left: var(--space-sm);
  }

  /* Hero */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    text-align: center;
    background-image: url('../images/hero2.jpg');
    background-size: cover;
    background-position: center top;
    position: relative;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(20, 15, 10, 0.20) 0%,
      rgba(20, 15, 10, 0.30) 50%,
      rgba(20, 15, 10, 0.80) 100%
    );
    pointer-events: none;
    z-index: 1;
  }
  .hero__content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: calc(var(--nav-height) + 1rem) var(--space-md) 2.5rem;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero__logo--top {
    width: min(180px, 52vw);
    margin-left: auto;
    margin-right: auto;
    margin-top: -25px;
    display: block;
  }
  .hero__bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero__panel {
    align-items: center;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
  }
  .hero__cta-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-bottom: 0.5rem;
  }  .hero__logo { margin-left: auto; margin-right: auto; margin-top: -40px; }
  .hero__tagline { margin-left: auto; margin-right: auto; }
  .hero__cta-row { justify-content: center; width: 100%; }
  .hero__cta-row--primary { flex-direction: column; gap: 0.6rem; }
  .hero__cta-row--primary .btn { width: 100%; max-width: 100%; justify-content: center; }
  .hero__cta-row--secondary .hero__quick-link { flex: 1; min-width: 0; max-width: 49%; justify-content: center; }
  .hero .hero__badge { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: #fff; margin-left: auto; margin-right: auto; }
  .hero .hero__title { color: #fff; }
  .hero .hero__title em { color: var(--clr-gold); }
  .hero .hero__description { color: rgba(255,255,255,0.88); }
  .hero__image-side { display: none; }
  /* Services grid */
  .services-overview__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
  }
  .service-card { padding: 1.25rem; }
  .service-card__price { font-size: 1.5rem !important; }

  /* About preview */
  .about-preview__inner { flex-direction: column; }
  .about-preview__images { display: none; }

  /* Gallery grid */
  .gallery-preview__grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }
  .gallery-preview__item:first-child { grid-column: span 2; }

  /* Contact CTA */
  .contact-cta__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .contact-cta__map-container { height: 260px !important; }
  .contact-cta__directions-btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem;
  }

  /* Loyalty banner */
  .loyalty-banner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem;
  }
  .loyalty-banner__icon { font-size: 2.5rem; }
  .loyalty-banner__sub { flex-shrink: unset; }

  /* Sections spacing */
  .section { padding: 4rem 0; }

  /* Services & gallery filter tabs — horizontally scrollable on mobile */
  .services-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.75rem;
    gap: 0.5rem;
  }
  .services-tabs::-webkit-scrollbar { display: none; }
  .services-tab {
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  /* Contact page map iframe */
  .contact-form iframe { height: 300px !important; }

  /* Loyalty banner — let the FREE pill wrap to its own line */
  .loyalty-banner__text { font-size: 1rem; }
  .loyalty-banner__free {
    display: block;
    margin-top: 0.25rem;
    font-size: 1rem;
  }

  /* Tap targets — 44px minimum */
  .footer__social-link { width: 44px; height: 44px; }
  .navbar__lang {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── 480px and below ── */
@media (max-width: 480px) {

  /* Services single column on very small screens */
  .services-overview__grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer single column */
  .footer__grid {
    grid-template-columns: 1fr !important;
  }

  /* Hero */
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  /* Buttons full width in CTA */
  .btn-whatsapp--large { font-size: 0.95rem !important; }

  /* Section title smaller */
  .section-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }

  /* Booking CTA */
  .booking-cta__buttons { flex-direction: column; align-items: stretch; }
  .booking-cta__buttons a { text-align: center; justify-content: center; }

  /* Page-hero title: smaller floor + safe word wrapping for long Dutch words */
  .page-hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
    word-break: break-word;
    hyphens: auto;
  }
  .page-hero__subtitle { font-size: 0.9rem; }
  .page-hero {
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  }

  /* Contact page map iframe */
  .contact-form iframe { height: 250px !important; }

  /* Team card photo — keep portraits compact on very small screens */
  .team-card__photo { height: 200px; }
}

/* ── Ensure container padding on mobile ── */
@media (max-width: 640px) {
  .container { padding: 0 1rem; }
  .contact-cta__info-side { padding: 1.25rem 1.25rem; }
}

/* ============================================================
   OWNER-FEEDBACK ROUND 1 — June 2026
   ============================================================ */

/* ─── CONTACT PAGE — FOOTER LOGO ──────────────────────────── */
.contact__logo,
.footer__logo {
  filter: brightness(0);
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

/* ─── HERO TAGLINE TWEAK (homepage) ───────────────────────── */
.hero__tagline-small {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0.5rem 0 1.25rem;
}

