/* ============================================================
   Dekkers Hair & Beauty  Design System
   Colors: Sage green palette, off-white, warm black
   Fonts: Cormorant Garamond (display) + Inter (body)
   ============================================================ */

/* ---- Custom properties ---- */
:root {
  --sage:         #6B8C6E;
  --sage-dark:    #2F4E3C;
  --sage-mid:     #4A7050;
  --mint:         #C2D9C4;
  --mint-light:   #EBF4EC;
  --beige:        #F5EFE0;
  --beige-mid:    #EDE5D2;
  --bg:           #FAF7F2;
  --bg-alt:       #F2EDE3;
  --text:         #1C2419;
  --muted:        #5C6B5A;
  --border:       #DDD6C8;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  --radius:       4px;
  --radius-lg:    12px;
  --shadow:       0 2px 16px rgba(28, 36, 25, 0.08);
  --shadow-lg:    0 8px 40px rgba(28, 36, 25, 0.14);
  --transition:   0.25s ease;

  --max-width:    1280px;
  --nav-height:   72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 52px); /* header + sticky jump-nav */ }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
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; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.8rem, 5vw, 4rem); }
h2 { font-size: clamp(2.1rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.45rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--sage);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}
.btn--outline {
  border: 1.5px solid var(--sage);
  color: var(--sage);
}
.btn--outline:hover {
  background: var(--sage);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--sage-dark);
}
.btn--white:hover {
  background: var(--mint-light);
}
.btn--ghost {
  color: var(--sage);
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost::after {
  content: '→';
  transition: transform var(--transition);
}
.btn--ghost:hover::after { transform: translateX(4px); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) { .container { padding-inline: 2.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }

.section {
  padding-block: 5rem;
}
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--sage-dark); color: var(--white); }
.section--mint { background: var(--beige); }

.section__header {
  margin-bottom: 3rem;
}
.section__header p {
  color: var(--muted);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding-inline: 1.5rem;
  gap: 1rem;
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}
@media (min-width: 768px) { .site-header { padding-inline: 2.5rem; } }
@media (min-width: 1024px) { .site-header { padding-inline: 3rem; } }

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .main-nav { display: flex; } }

.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--sage);
  background: var(--mint-light);
}

/* Booking dropdown button  header (mobiel compact, desktop full) */
.booking-cta {
  display: block;
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}
@media (min-width: 1024px) { .booking-cta { margin-left: 0; } }

.btn-booking {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-booking:hover { background: var(--sage-dark); }
.btn-booking svg { width: 14px; height: 14px; transition: transform var(--transition); }

/* Mobile header: compact booking button + phone icon zichtbaar */
@media (max-width: 1023px) {
  .site-header { padding-inline: 1rem; gap: 0.625rem; }
  .header-logo img { height: 42px; }
  .btn-booking {
    padding: 0.5rem 0.8rem;
    font-size: 0.78rem;
    gap: 0;
  }
  .btn-booking svg { display: none; }
  .phone-cta { display: block; margin-left: 0; }
}
.btn-booking.open svg { transform: rotate(180deg); }

.booking-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  overflow: hidden;
  z-index: 999;
}
.booking-dropdown.open { display: block; }

.booking-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition);
  border-bottom: 1px solid var(--border);
}
.booking-dropdown a:last-child { border-bottom: none; }
.booking-dropdown a:hover { background: var(--mint-light); color: var(--sage-dark); }
.booking-dropdown__pin {
  width: 32px; height: 32px;
  background: var(--mint-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.booking-dropdown__pin svg { width: 16px; height: 16px; color: var(--sage); }
.booking-dropdown__info { display: flex; flex-direction: column; }
.booking-dropdown__city { font-weight: 600; color: var(--sage-dark); }
.booking-dropdown__street { font-size: 0.8rem; color: var(--muted); font-weight: 400; }

/* Phone button  altijd zichtbaar, op mobiel naar rechts */
.phone-cta {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}
@media (min-width: 1024px) { .phone-cta { margin-left: 0; } }

.phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.phone-btn:hover { background: var(--mint-light); color: var(--sage-dark); }

.phone-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  overflow: hidden;
  z-index: 999;
}
.phone-dropdown.open { display: block; }

.phone-dropdown__item {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.phone-dropdown__item:last-child { border-bottom: none; }
.phone-dropdown__item:hover { background: var(--mint-light); }
.phone-dropdown__city { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.phone-dropdown__number { font-size: 1rem; font-weight: 600; color: var(--sage-dark); }

/* Mobile menu toggle */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  color: var(--text);
  margin-left: 0.5rem;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
}
.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  background: inherit;
  border-radius: inherit;
  left: 0;
}
.mobile-menu-btn span::before { top: -6px; }
.mobile-menu-btn span::after { top: 6px; }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  flex-direction: column;
  padding: calc(var(--nav-height) + 1rem) 1.5rem 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
.mobile-nav__links a {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.9rem 0.75rem;
  color: var(--text);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav__links a:hover { color: var(--sage-dark); }
.mobile-nav__links a:last-child { border-bottom: none; }

.mobile-nav__booking {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-nav__booking .btn { justify-content: center; font-size: 1rem; padding: 1rem; }

/* Page spacer below fixed header */
.page-top { margin-top: var(--nav-height); }

/* ---- HERO (SPLIT) ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - var(--nav-height));
  min-height: 520px;
  max-height: 900px;
  position: relative;
  overflow: hidden;
}

.hero__panel {
  position: relative;
  overflow: hidden;
}
.hero__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.hero__panel:hover img { transform: scale(1.03); }

.hero__panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,36,25,0.72) 0%, rgba(28,36,25,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: var(--white);
}
.hero__panel-overlay h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 0.25rem;
}
.hero__panel-overlay .address {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}
.hero__panel-overlay .phone {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

/* Center overlay (logo + tagline) */
.hero__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
}
.hero__center-logo {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-inline: auto;
  margin-bottom: 0.75rem;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--white);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  white-space: nowrap;
}

/* Divider line */
.hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.3);
  z-index: 5;
}

/* Hero mobile: stacked */
@media (max-width: 767px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    height: calc(100svh - var(--nav-height));
    max-height: none;
  }
  .hero::after { display: none; }
  .hero__center-logo { width: 120px; }
  .hero__panel-overlay { padding: 1.5rem; }
  .hero__center {
    top: 50%;
    left: 50%;
  }
}

/* ---- USP STRIP ---- */
.usp-strip {
  background: var(--sage-dark);
  color: var(--white);
  padding-block: 2rem;
}
.usp-strip__grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 1rem;
  padding-bottom: 0.25rem;
}
.usp-strip__grid::-webkit-scrollbar { display: none; }
.usp-strip__grid .usp-item {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.5rem;
  min-height: 120px;
  gap: 1rem;
}
@media (min-width: 540px) {
  .usp-strip__grid .usp-item { flex: 0 0 46%; }
}
@media (max-width: 767px) {
  .usp-strip { padding-block: 2rem 2.25rem; }
  .usp-item__icon { width: 48px; height: 48px; }
  .usp-item__icon svg { width: 24px; height: 24px; }
  .usp-item h4 { font-size: 1rem; margin-bottom: 0.35rem; }
  .usp-item p { font-size: 0.875rem; }
}
@media (min-width: 768px) {
  .usp-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }
  .usp-strip__grid .usp-item { flex: none; }
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.usp-item__icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.usp-item__icon svg { width: 20px; height: 20px; color: var(--mint); }
.usp-item h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--white);
}
.usp-item p {
  font-size: 0.8rem;
  opacity: 0.75;
  line-height: 1.4;
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.service-card__body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--sage-dark);
}
.service-card__body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.service-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  background: var(--mint-light);
  color: var(--sage-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

/* Mobile: horizontal scroll on services */
@media (max-width: 639px) {
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .service-card {
    flex-shrink: 0;
    width: 80vw;
    scroll-snap-align: start;
  }
}

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-content .eyebrow { margin-bottom: 0.75rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { color: var(--muted); margin-bottom: 1rem; font-size: 1rem; }
.about-content .btn { margin-top: 0.5rem; }

/* ---- VESTIGINGEN BLOCK (homepage) ---- */
.locations-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .locations-grid { grid-template-columns: 1fr 1fr; } }

.location-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.location-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.location-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.location-card:hover .location-card__img img { transform: scale(1.04); }
.location-card__body {
  padding: 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.location-card__body h3 { font-size: 1.7rem; color: var(--sage-dark); margin-bottom: 1rem; }
.location-card__meta { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.location-card__meta li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--muted); }
.location-card__meta svg { width: 16px; height: 16px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.location-card__meta a { color: var(--sage); }
.location-card__hours { margin-bottom: 1.5rem; font-size: 0.875rem; color: var(--muted); }
.location-card__hours strong { color: var(--text); display: block; margin-bottom: 0.5rem; font-size: 0.9rem; }
.location-card__actions {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ---- TEAM PREVIEW ---- */
.team-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.team-slider::-webkit-scrollbar { display: none; }

.team-card {
  flex-shrink: 0;
  width: 260px;
  scroll-snap-align: start;
  text-align: center;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sage-dark);
}
.team-card p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  max-width: none;
}

/* ---- ECO HIGHLIGHT ---- */
.eco-section {
  background: var(--sage-dark);
  color: var(--white);
  padding-block: 5rem;
}
.eco-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .eco-grid { grid-template-columns: 1fr 1fr; } }

.eco-content .eyebrow { color: var(--mint); }
.eco-content h2 { color: var(--white); margin-bottom: 1.25rem; }
.eco-content p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; max-width: 52ch; }
.eco-content .btn { margin-top: 0.5rem; }

.eco-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.eco-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
}
.eco-badge__icon {
  width: 44px; height: 44px;
  background: var(--mint-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.eco-badge__icon svg { width: 22px; height: 22px; color: var(--sage-dark); }
.eco-badge h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; color: var(--white); }
.eco-badge p { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin: 0; }

/* ---- REVIEWS ---- */
.reviews-strip {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 0.25rem;
}
.reviews-strip::-webkit-scrollbar { display: none; }
.reviews-strip .review-card {
  flex: 0 0 84%;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .reviews-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }
  .reviews-strip .review-card { flex: none; }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.review-card__stars { color: #F4B400; font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.review-card__text { font-size: 0.9rem; color: var(--muted); font-style: italic; margin-bottom: 1rem; line-height: 1.6; }
.review-card__author { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.review-card__date { font-size: 0.75rem; color: var(--muted); }

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.google-rating strong { color: var(--text); font-size: 1.1rem; }
.google-rating__stars { color: #F4B400; }

/* ---- BRANDS ---- */
.brands-strip {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 2rem;
  padding-block: 1.5rem;
  padding-bottom: 0.5rem;
  align-items: center;
}
.brands-strip::-webkit-scrollbar { display: none; }
.brand-logo {
  flex: 0 0 auto;
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  scroll-snap-align: center;
  filter: grayscale(0) opacity(0.9);
  transition: filter var(--transition), opacity var(--transition);
}
.brand-logo:hover { filter: grayscale(0) opacity(1); }
@media (min-width: 768px) {
  /* Groot, altijd op één rij verdeeld over de volle breedte */
  .brands-strip {
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow: visible;
    gap: clamp(1rem, 3vw, 2.5rem);
  }
  .brand-logo {
    height: clamp(48px, 6.5vw, 84px);
    max-width: 17%;
    filter: grayscale(1) opacity(0.75);
  }
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--sage-dark);
  color: rgba(255,255,255,0.85);
  padding-block: 3.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand img {
  height: 56px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  max-width: 28ch;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.footer-col address a { transition: color var(--transition); }
.footer-col address a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--white); }

/* ---- STICKY MOBILE CTA  hidden (booking moved to header) ---- */
.sticky-cta { display: none; }

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--sage-dark);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.sticky-cta__btn:hover { background: var(--sage); }
.sticky-cta__btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.sticky-cta__btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.sticky-cta__dropdown {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.12);
  overflow: hidden;
  display: none;
}
.sticky-cta__dropdown.open { display: block; }

.sticky-cta__option {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  transition: background var(--transition);
}
.sticky-cta__option:not(:last-child) { border-bottom: 1px solid var(--border); }
.sticky-cta__option:hover { background: var(--bg-alt); }
.sticky-cta__option-icon {
  width: 36px; height: 36px;
  background: var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sticky-cta__option-icon svg { width: 16px; height: 16px; color: var(--sage-dark); }
.sticky-cta__option-info { display: flex; flex-direction: column; }
.sticky-cta__option-city { font-weight: 600; color: var(--sage-dark); line-height: 1.2; }
.sticky-cta__option-street { font-size: 0.78rem; color: var(--muted); }

/* ---- PAGE HERO (sub-pages) ---- */
.page-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
}
@media (min-width: 768px) { .page-hero { height: 460px; } }

.page-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,36,25,0.7) 0%, rgba(28,36,25,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}
.page-hero__content { color: var(--white); }
.page-hero__content .eyebrow { color: var(--mint); margin-bottom: 0.5rem; }
.page-hero__content h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero__content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 52ch; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: 0.5; }

/* ---- INTRO TEXT BLOCK ---- */
.intro-block {
  max-width: 72ch;
  margin-inline: auto;
  text-align: center;
  padding-block: 4rem;
}
.intro-block .eyebrow { margin-bottom: 0.75rem; }
.intro-block h2 { margin-bottom: 1.25rem; }
.intro-block p { color: var(--muted); font-size: 1.05rem; margin-inline: auto; }

/* ---- VESTIGING DETAIL PAGE ---- */
.vestiging-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .vestiging-grid { grid-template-columns: 3fr 2fr; gap: 5rem; } }

.vestiging-info h2 { color: var(--sage-dark); margin-bottom: 1.5rem; }
.vestiging-info .meta-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.vestiging-info .meta-row { display: flex; align-items: flex-start; gap: 1rem; font-size: 0.95rem; }
.vestiging-info .meta-row svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.vestiging-info .meta-row a { color: var(--sage); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.6rem 0; }
.hours-table td:first-child { color: var(--muted); width: 120px; }
.hours-table td:last-child { font-weight: 500; }
.hours-table .closed { color: var(--muted); font-weight: 400; }

/* ---- BEHANDELINGEN (service detail) ---- */
.behandelingen-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .behandelingen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .behandelingen-grid { grid-template-columns: repeat(3, 1fr); } }

.behandeling-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.behandeling-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.behandeling-card__img { aspect-ratio: 16/9; overflow: hidden; }
.behandeling-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.behandeling-card:hover .behandeling-card__img img { transform: scale(1.05); }
.behandeling-card__body { padding: 1.25rem 1.5rem; }
.behandeling-card__body h4 { font-size: 1.15rem; color: var(--sage-dark); margin-bottom: 0.35rem; }
.behandeling-card__body p { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; line-height: 1.5; }
.behandeling-card__price { font-size: 0.875rem; color: var(--muted); }

/* ---- PRIJSLIJST ---- */
.prijslijst {
  max-width: 720px;
}
.prijslijst-item {
  display: flex;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--border);
  gap: 0.5rem;
}
.prijslijst-item:last-child { border-bottom: none; }
.prijslijst-item__name { flex: 1; font-size: 0.95rem; color: var(--text); }
.prijslijst-item__desc { flex: 1; font-size: 0.82rem; color: var(--muted); font-style: italic; }
.prijslijst-item__price { font-size: 0.9rem; color: var(--muted); font-weight: 400; flex-shrink: 0; }

.prijslijst-section { margin-bottom: 2.5rem; }
.prijslijst-section h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--mint);
  margin-bottom: 0.5rem;
}

/* ---- CONTACT GRID ---- */
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- MAP ---- */
.map-embed {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ---- VACATURE ---- */
.vacature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.vacature-card h3 { color: var(--sage-dark); margin-bottom: 0.5rem; }
.vacature-card__meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.vacature-card__meta span {
  font-size: 0.8rem;
  background: var(--mint-light);
  color: var(--sage-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-weight: 500;
}
.vacature-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ---- MERKEN PAGE ---- */
.merken-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .merken-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .merken-grid { grid-template-columns: repeat(3, 1fr); } }

.merk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.merk-card__logo { height: 48px; object-fit: contain; object-position: left; filter: grayscale(0.3); }
.merk-card h3 { font-size: 1.3rem; color: var(--sage-dark); }
.merk-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 2rem;
}

/* ---- HERO SPLIT (tekst links, scherpe foto rechts) ---- */
.hero-split {
  display: grid;
  grid-template-columns: 44% 56%;
  height: calc(100vh - var(--nav-height));
  min-height: 540px;
  max-height: 900px;
  background: var(--sage-dark);
  /* Geen overflow: hidden hier  de booking-dropdowns moeten buiten de hero kunnen vallen; de foto-slideshow clipt zichzelf al via .hero-split__img */
}

.hero-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem clamp(2rem, 3vw, 3.5rem) 3rem clamp(2rem, 5vw, 5rem);
  color: var(--white);
  position: relative;
  z-index: 2;
}

.hero-split__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 500;
  margin-bottom: 1.5rem;
  max-width: none;
}

.hero-split__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
/* Gewoon &-teken (Inter) in plaats van de sierlijke Cormorant-ampersand */
.hero-split__title .amp {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.72em;
}
.hero-split__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--mint);
  display: block;
}

.hero-split__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: none;
}

.hero-split__story {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  max-width: 34rem;
}
p.hero-split__story:last-of-type { margin-bottom: 2.25rem; }

.hero-split__ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Hero booking dropdowns: per vestiging tonen waarvoor je er terechtkunt */
.hero-booking { position: relative; }

.hero-booking__trigger { cursor: pointer; border: none; font-family: inherit; }
.btn--hero-outline.hero-booking__trigger { border: 1.5px solid rgba(255,255,255,0.5); }

.hero-booking__chevron { transition: transform var(--transition); margin-left: 0.1rem; }
.hero-booking.open .hero-booking__chevron { transform: rotate(180deg); }

.hero-booking__panel {
  position: absolute;
  bottom: calc(100% + 10px); /* opent naar boven: knoppen staan onderin de hero */
  left: 0;
  z-index: 50;
  width: min(300px, 86vw);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  padding: 1.25rem 1.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}
.hero-booking.open .hero-booking__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-booking__adres {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}
.hero-booking__hier {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.hero-booking__services {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hero-booking__services li {
  background: var(--mint-light);
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.hero-booking__services li span {
  font-size: 0.68rem;
  color: var(--sage);
  margin-left: 0.25rem;
}
.hero-booking__boek {
  width: 100%;
  justify-content: center;
  text-align: center;
  display: inline-flex;
}
.hero-booking__meer {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.6rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-booking__meer:hover { color: var(--sage-dark); }

/* Right: photo slideshow */
.hero-split__img {
  position: relative;
  overflow: hidden;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  max-width: none;
}
.hero-slide-img.active { opacity: 1; }

/* Gradient uitleiding: subtiele overgang aan de linkerkant van de foto */
.hero-split__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--sage-dark) 0%,
    rgba(47,78,60,0.12) 28%,
    transparent 42%
  );
  pointer-events: none;
  z-index: 1;
}

/* Dot nav op foto */
.slide-dots {
  position: absolute;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}
.slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.slide-dot.active {
  background: var(--white);
  transform: scale(1.3);
}
.slide-dot:hover { background: rgba(255,255,255,0.7); }

/* Hero buttons */
.btn--hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--sage-dark);
  padding: 0.85rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn--hero-primary:hover {
  background: var(--beige);
  transform: translateY(-2px);
}

.btn--hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn--hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Mobile: foto boven, tekst onder */
@media (max-width: 767px) {
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: 52vw auto;
    height: auto;
    min-height: unset;
    max-height: none;
  }
  .hero-split__img {
    order: -1;
    height: 52vw;
    min-height: 240px;
  }
  .hero-split__fade {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 60%,
      rgba(47,78,60,0.5) 78%,
      rgba(47,78,60,0.92) 92%,
      var(--sage-dark) 100%
    );
  }
  .hero-split__text {
    padding: 2rem 1.5rem 2.5rem;
  }
  .hero-split__title { font-size: clamp(2.6rem, 9vw, 3.4rem); font-weight: 600; }
  .hero-split__sub { font-size: 0.82rem; margin-bottom: 1.25rem; }
  .hero-split__story { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; }
  p.hero-split__story:last-of-type { margin-bottom: 1.75rem; }

  .hero-booking { width: 100%; }
  .hero-booking__trigger { width: 100%; justify-content: center; }
  /* Mobiel: panel in de flow zodat niets wordt afgekapt of overlapt */
  .hero-booking__panel {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }
  .hero-booking.open .hero-booking__panel { display: block; }
  .slide-dots { bottom: 1rem; right: 1rem; }
  .btn--hero-primary,
  .btn--hero-outline { padding: 0.75rem 1.4rem; font-size: 0.85rem; }
}

/* ---- LOCATION CARD: hover overlay & services tags ---- */
.location-card {
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.location-card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,36,25,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.location-card:hover .location-card__img-overlay { opacity: 1; }
.location-card__img-overlay span {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.4);
}

.location-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.location-card__services span {
  font-size: 0.72rem;
  background: var(--mint-light);
  color: var(--sage-dark);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---- GALLERY GRID (homepage) ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 0.75rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item--wide { grid-column: span 2; }

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery-item--wide { grid-column: span 2; }
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ---- Footer normal (no sticky cta anymore) ---- */

/* ========================================================
   LOCATIEPAGINA  vestiging-specifieke componenten
   ======================================================== */

/* Sterkere hero-overlay voor leesbaarheid op locatiepagina's */
.page-hero--locatie {
  height: 640px;
  background: var(--bg);
}
@media (min-width: 768px) { .page-hero--locatie { height: 680px; } }

/* Desktop overlay: top→bottom fade voor leesbaarheid */
.page-hero--locatie .page-hero__overlay {
  background: linear-gradient(
    to top,
    rgba(10,18,12,0.90) 0%,
    rgba(10,18,12,0.80) 30%,
    rgba(10,18,12,0.40) 60%,
    transparent 100%
  );
  align-items: flex-end;
  padding: 4rem clamp(1.5rem, 5vw, 4rem) 3.5rem;
}

/* Mobile: zelfde patroon als de homepage-hero  foto volledig zichtbaar bovenaan,
   tekst eronder op donkergroen, zachte gradient-overgang op de fotorand */
@media (max-width: 767px) {
  .page-hero--locatie {
    height: auto;
    background: var(--sage-dark);
  }
  .page-hero--locatie picture { display: block; }
  .page-hero--locatie .page-hero__img {
    position: relative;
    display: block;
    width: 100%;
    height: 62vw;
    min-height: 250px;
    object-fit: cover;
    object-position: center;
  }
  .page-hero--locatie .page-hero__overlay {
    position: relative;
    margin-top: -64px;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(47,78,60,0.72) 38px,
      var(--sage-dark) 64px
    );
    align-items: flex-start;
    padding: 4.75rem 1.5rem 2.25rem;
  }
}

.page-hero--locatie .page-hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.page-hero--locatie .page-hero__content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 50ch;
  margin-bottom: 1.75rem;
}

.hero-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Kies-dropdown: generieke vestigingskeuze onder een knop (lichte secties) */
.kies-dropdown { position: relative; display: inline-block; }
.kies-dropdown__trigger { cursor: pointer; }
.kies-dropdown__trigger svg { transition: transform var(--transition); }
.kies-dropdown.open .kies-dropdown__trigger svg { transform: rotate(180deg); }
.kies-dropdown__panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 200;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.kies-dropdown.open .kies-dropdown__panel { display: block; }
.kies-dropdown__panel a {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.85rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sage-dark);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.kies-dropdown__panel a:last-child { border-bottom: none; }
.kies-dropdown__panel a:hover { background: var(--mint-light); }
.kies-dropdown__panel a span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
}

/* Zoek-wijzer: opvallende ankerkaarten "Waar ben je naar op zoek?" */
.zoek-wijzer {
  background: var(--mint-light);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0 2rem;
}
.zoek-wijzer__label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}
.zoek-wijzer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
@media (min-width: 768px) {
  .zoek-wijzer__grid { grid-template-columns: repeat(5, 1fr); }
}
.zoek-wijzer__card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-dark);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.zoek-wijzer__card:hover {
  border-color: var(--sage);
  box-shadow: 0 6px 18px rgba(47,78,60,0.12);
  transform: translateY(-2px);
}
.zoek-wijzer__card svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  background: var(--mint-light);
  border-radius: 50%;
  color: var(--sage);
  flex-shrink: 0;
}
.zoek-wijzer__card::after {
  content: "→";
  margin-left: auto;
  color: var(--sage);
  font-weight: 400;
}

/* Jump navigation */
.locatie-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.locatie-nav::-webkit-scrollbar { display: none; }

.locatie-nav__inner {
  display: flex;
  gap: 0;
  padding: 0 clamp(1rem, 3vw, 2rem);
  white-space: nowrap;
}

.locatie-nav a {
  display: inline-block;
  padding: 0.9rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.locatie-nav a:hover { color: var(--sage-dark); }
.locatie-nav a.active { color: var(--sage-dark); border-bottom-color: var(--sage); }

/* Diensten badges */
.dienst-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.dienst-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--mint-light);
  color: var(--sage-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Pricing tabs */
.price-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.price-tab-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.price-tab-btn:hover { border-color: var(--sage); color: var(--sage-dark); }
.price-tab-btn.active { background: var(--sage-dark); color: var(--white); border-color: var(--sage-dark); }

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

/* Price group heading */
.price-group {
  margin-bottom: 2.25rem;
}
.price-group__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* Price row */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--bg-alt);
}
.price-row:last-child { border-bottom: none; }
.price-row__name {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text);
}
.price-row__name small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}
.price-row__duration {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.price-row__dots {
  flex: 1;
  border-bottom: 1.5px dotted var(--border);
  min-width: 20px;
  max-width: 60px;
  margin-bottom: 3px;
}
.price-row__price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sage-dark);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 4.5rem;
  text-align: right;
}
.price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border-left: 3px solid var(--mint);
}

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* Locatie info grid */
.locatie-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) { .locatie-info-grid { grid-template-columns: 1fr 1fr; } }

/* Contact: locatieblokken gelijk uitlijnen  maps altijd op dezelfde hoogte onderaan */
.contact-location { display: flex; flex-direction: column; }
.contact-location .map-embed { margin-top: auto; }
