/* ============================================================
   stoelmassages.nl – style.css
   Stijl: zacht, warm, licht – geïnspireerd op Rituals
   Kleuren: warm ivoor, zacht salie, dusty rose, warm taupe
   Fonts: Cormorant Garamond (koppen) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  /* Rituals-stijl kleurenpalet – warm, licht, zacht */
  --sage:       #7A9A8A;        /* zacht salie groen – accentkleur */
  --sage-dk:    #5C7A6A;        /* donkerder salie */
  --sage-lt:    #EFF5F1;        /* heel licht salie achtergrond */
  --sage-mid:   #C8DDD4;        /* medium salie voor borders */
  --warm:       #C4A882;        /* warm taupe / caramel */
  --warm-lt:    #E8D9C4;        /* licht warm */
  --warm-bg:    #FBF7F2;        /* warm ivoor achtergrond */
  --ivory:      #FDFAF6;        /* zuiver ivoor */
  --linen:      #F5F0E8;        /* linnen beige */
  --border:     #E8E0D4;        /* zachte border */
  --border-lt:  #F0EAE0;        /* heel lichte border */
  --text:       #2C2420;        /* warm donker bruin */
  --text-mid:   #5C4E44;        /* medium bruin */
  --muted:      #9A8A7E;        /* zacht taupe voor muted tekst */
  --white:      #FFFFFF;
  --radius:     6px;
  --max:        1160px;
  --shadow:     0 1px 3px rgba(100,80,60,.06), 0 4px 12px rgba(100,80,60,.05);
  --shadow-lg:  0 4px 28px rgba(100,80,60,.12);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--linen);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.sr-only { position: absolute; left: -9999px; }

/* ── NAVIGATIE ── */
.nav-top {
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(100,80,60,.06);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.logo span { color: var(--sage); }
.nav-right  { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: var(--text-mid);
  font-size: .82rem;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all .15s;
  letter-spacing: .02em;
}
.nav-link:hover { color: var(--sage-dk); background: var(--sage-lt); }
.nav-btn {
  background: var(--sage);
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius);
  letter-spacing: .04em;
  transition: background .15s;
}
.nav-btn:hover { background: var(--sage-dk); }

/* ── DROPDOWN (fix: pseudo-element brug zodat menu niet wegvliegt) ── */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: none;
  border: none;
  color: var(--text-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .15s;
  letter-spacing: .02em;
}
.nav-dropdown-btn:hover { color: var(--sage-dk); background: var(--sage-lt); }

/* Onzichtbare brug tussen knop en menu – voorkomt dat menu wegvalt */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;   /* dit is de "brug" ruimte */
  z-index: 200;
  min-width: 230px;
}
/* Pseudo-element vult de brug zodat hover niet onderbroken wordt */
.nav-dropdown-menu::before {
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.nav-dropdown-menu-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px 0;
  max-height: 70vh;
  overflow-y: auto;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 18px;
  font-size: .83rem;
  color: var(--text);
  transition: background .12s;
}
.nav-dropdown-menu a:hover { background: var(--sage-lt); color: var(--sage-dk); }
.nav-dropdown-menu a span {
  font-size: .7rem;
  color: var(--muted);
  background: var(--linen);
  padding: 2px 7px;
  border-radius: 20px;
  flex-shrink: 0;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #F0EAE0 0%, #E8DFD2 50%, #EDF3EE 100%);
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(122,154,138,.07);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(196,168,130,.06);
  pointer-events: none;
}
.hero-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(122,154,138,.12);
  border: 1px solid var(--sage-mid);
  color: var(--sage-dk);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero-sub {
  color: var(--text-mid);
  font-size: .95rem;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ── ZOEKBALK ── */
.search-wrap { max-width: 580px; }
.search-form {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(100,80,60,.14);
  border: 1px solid var(--border);
}
.search-form select,
.search-form input {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 14px 16px;
}
.search-form select {
  border-right: 1px solid var(--border-lt);
  min-width: 165px;
  color: var(--muted);
  cursor: pointer;
}
.search-form input { flex: 1; }
.search-form input::placeholder { color: var(--muted); }
.search-form button {
  background: var(--sage);
  color: #fff;
  border: none;
  padding: 0 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .15s;
  white-space: nowrap;
}
.search-form button:hover { background: var(--sage-dk); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--border-lt);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sage-dk);
  line-height: 1;
}
.stat-l {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}

/* ── PAGINA BODY ── */
.page-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 36px;
  align-items: start;
}
.page-body.full { grid-template-columns: 1fr; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--sage-dk); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

/* ── SECTIE HOOFD ── */
.section-head { margin-bottom: 22px; }
.section-head h1,
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -.005em;
}
.section-head p { font-size: .87rem; color: var(--muted); font-weight: 300; line-height: 1.65; }
.count-badge {
  display: inline-block;
  background: var(--sage-lt);
  color: var(--sage-dk);
  font-size: .7rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  font-family: 'DM Sans', sans-serif;
}

/* ── SEO TEKST BOX ── */
.seo-box {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-left: 3px solid var(--warm);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 26px;
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}
.seo-box p { margin-bottom: 8px; }
.seo-box p:last-child { margin-bottom: 0; }
.seo-box ul { margin: 6px 0 8px 18px; }
.seo-box ul li { margin-bottom: 3px; }

/* ── PROVINCIE GRID ── */
.provincie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 10px;
  margin-bottom: 36px;
}
.provincie-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .18s;
}
.provincie-card:hover {
  border-color: var(--sage);
  background: var(--sage-lt);
  box-shadow: var(--shadow);
}
.provincie-card-name { font-weight: 500; font-size: .88rem; color: var(--text); }
.provincie-card-count {
  font-size: .72rem;
  color: var(--muted);
  background: var(--linen);
  padding: 2px 8px;
  border-radius: 20px;
}

/* ── MASSEUR LIJST ── */
.masseur-list { display: flex; flex-direction: column; gap: 0; }
.masseur-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 16px;
  align-items: start;
  transition: all .18s;
  position: relative;
  margin-top: -1px;
}
.masseur-item:first-child { border-radius: var(--radius) var(--radius) 0 0; margin-top: 0; }
.masseur-item:last-child  { border-radius: 0 0 var(--radius) var(--radius); }
.masseur-item:only-child  { border-radius: var(--radius); margin-top: 0; }
.masseur-item:hover {
  border-color: var(--sage);
  background: var(--sage-lt);
  z-index: 1;
  box-shadow: var(--shadow);
}

/* Avatar */
.m-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.m-body    { min-width: 0; }
.m-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.3;
}
.m-name a { color: inherit; }
.m-name a:hover { color: var(--sage-dk); text-decoration: underline; }
.m-city {
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.m-tags   { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 7px; }
.m-tag {
  background: var(--sage-lt);
  color: var(--sage-dk);
  font-size: .65rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: .02em;
}
.m-desc   { font-size: .81rem; color: var(--muted); line-height: 1.55; font-weight: 300; }
.m-rating { display: flex; align-items: center; gap: 4px; font-size: .73rem; color: var(--muted); margin-top: 5px; }
.m-stars  { color: var(--warm); font-size: .7rem; letter-spacing: 1px; }

/* Contact rechts */
.m-contact { display: flex; flex-direction: column; gap: 7px; min-width: 175px; padding-top: 2px; }
.m-contact-item { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--text-mid); }
.m-contact-item svg { flex-shrink: 0; color: var(--sage); opacity: .8; }
.m-contact-item a {
  color: var(--sage-dk);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 155px;
}
.m-contact-item a:hover { text-decoration: underline; }

/* ── STAD LIJST ── */
.stad-lijst {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 8px;
  margin-bottom: 28px;
}
.stad-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .15s;
}
.stad-item:hover { border-color: var(--sage); background: var(--sage-lt); }
.stad-item a { font-size: .87rem; font-weight: 500; color: var(--text); flex: 1; }
.stad-item .cnt {
  font-size: .7rem;
  color: var(--muted);
  background: var(--linen);
  padding: 2px 7px;
  border-radius: 20px;
}

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 78px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-card-head {
  background: var(--sage-lt);
  border-bottom: 1px solid var(--sage-mid);
  padding: 12px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--sage-dk);
  letter-spacing: .02em;
}
.sidebar-links { list-style: none; }
.sidebar-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 18px;
  font-size: .83rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-lt);
  transition: background .12s;
}
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links li a:hover,
.sidebar-links li a.active {
  background: var(--sage-lt);
  color: var(--sage-dk);
  font-weight: 500;
}
.sidebar-links li a .cnt {
  font-size: .68rem;
  color: var(--muted);
  background: var(--linen);
  padding: 2px 6px;
  border-radius: 20px;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--warm-bg) 100%);
  border: 1px solid var(--warm-lt);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
}
.sidebar-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.sidebar-cta p {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
  font-weight: 300;
}
.sidebar-cta a {
  display: block;
  background: var(--sage);
  color: #fff;
  padding: 9px;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: background .15s;
}
.sidebar-cta a:hover { background: var(--sage-dk); }

/* ── DETAILPAGINA ── */
.detail-header {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 16px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.detail-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: -.01em;
}
.detail-sub {
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.detail-tags { display: flex; flex-wrap: wrap; gap: 5px; }

.detail-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 14px;
}
.detail-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-lt);
  letter-spacing: .02em;
}
.detail-grid { display: flex; flex-direction: column; }
.detail-row {
  display: flex;
  gap: 12px;
  font-size: .84rem;
  border-bottom: 1px solid var(--border-lt);
  padding: 8px 0;
}
.detail-row:last-child { border-bottom: none; }
.detail-label {
  color: var(--muted);
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
  min-width: 120px;
  padding-top: 1px;
  flex-shrink: 0;
}
.detail-value { color: var(--text-mid); flex: 1; line-height: 1.5; }

/* Contact kaart */
.contact-kaart {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 78px;
}
.contact-kaart-head {
  background: var(--sage-lt);
  border-bottom: 1px solid var(--sage-mid);
  padding: 14px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-dk);
}
.contact-kaart-body { padding: 18px 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  margin-bottom: 10px;
  color: var(--text-mid);
}
.contact-item:last-of-type { margin-bottom: 16px; }
.contact-item svg { flex-shrink: 0; color: var(--sage); }
.contact-item a { color: var(--sage-dk); font-weight: 500; word-break: break-all; }
.contact-item a:hover { text-decoration: underline; }

.contact-btn {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  font-size: .84rem;
  font-weight: 500;
  margin-bottom: 7px;
  letter-spacing: .03em;
  transition: all .15s;
}
.contact-btn:last-child { margin-bottom: 0; }
.contact-btn-primary   { background: var(--sage); color: #fff; }
.contact-btn-primary:hover   { background: var(--sage-dk); }
.contact-btn-secondary { background: var(--warm); color: #fff; }
.contact-btn-secondary:hover { background: #b89060; }
.contact-btn-outline   { border: 1px solid var(--border); color: var(--muted); font-size: .78rem; padding: 8px; }
.contact-btn-outline:hover   { border-color: var(--sage); color: var(--sage-dk); }

/* ── PAGINERING ── */
.paginering { display: flex; justify-content: center; gap: 4px; margin-top: 28px; flex-wrap: wrap; }
.pag-btn {
  padding: 7px 12px;
  border-radius: var(--radius);
  font-size: .81rem;
  font-weight: 400;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all .14s;
}
.pag-btn:hover   { border-color: var(--sage); color: var(--sage-dk); background: var(--sage-lt); }
.pag-btn.active  { background: var(--sage); color: #fff; border-color: var(--sage); }
.pag-btn.disabled{ opacity: .35; pointer-events: none; }

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.faq-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.faq-item p { font-size: .82rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ── INFO SECTIE ── */
.info-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.info-inner { max-width: var(--max); margin: 0 auto; }
.info-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}
.info-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 22px 0 8px;
}
.info-inner p  { font-size: .87rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; font-weight: 300; }
.info-inner ul { margin: 0 0 12px 18px; }
.info-inner ul li { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 4px; font-weight: 300; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #EFF5F1 0%, #E8F0EB 100%);
  border-top: 1px solid var(--sage-mid);
  padding: 52px 24px;
}
.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.cta-text p { color: var(--muted); font-size: .88rem; font-weight: 300; line-height: 1.7; }
.cta-boxes  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.cta-box.hl { border-color: var(--sage); background: #fff; }
.cta-box-label {
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.cta-box-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2px;
}
.cta-box.hl .cta-box-price { color: var(--sage-dk); }
.cta-box-period { font-size: .68rem; color: var(--muted); margin-bottom: 12px; }
.cta-box ul { list-style: none; margin-bottom: 14px; display: flex; flex-direction: column; gap: 5px; }
.cta-box ul li { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.cta-box ul li::before { content: '✓'; color: var(--sage); font-weight: 600; }
.cta-box a { display: block; text-align: center; padding: 9px; border-radius: var(--radius); font-size: .8rem; font-weight: 500; transition: all .15s; letter-spacing: .03em; }
.cta-btn-free { border: 1px solid var(--border); color: var(--muted); }
.cta-btn-free:hover { border-color: var(--sage); color: var(--sage-dk); }
.cta-btn-paid { background: var(--sage); color: #fff; }
.cta-btn-paid:hover { background: var(--sage-dk); }

/* ── FOOTER ── */
footer { background: #2C2420; padding: 48px 24px 0; }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col p { font-size: .8rem; color: rgba(255,255,255,.28); line-height: 1.65; font-weight: 300; margin-top: 10px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: .8rem; color: rgba(255,255,255,.38); transition: color .14s; }
.footer-col ul li a:hover { color: rgba(255,255,255,.75); }
.f-logo { font-family: 'Cormorant Garamond', serif; color: rgba(255,255,255,.7); font-size: 1.15rem; font-weight: 600; letter-spacing: .03em; }
.f-logo span { color: var(--sage); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.2); }

/* ── GEEN RESULTATEN ── */
.no-results { text-align: center; padding: 64px 20px; }
.no-results h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--text); margin-bottom: 8px; }
.no-results p { color: var(--muted); font-size: .88rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .page-body { grid-template-columns: 1fr; }
  .sidebar   { position: static; }
  .cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-boxes { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .faq-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-inner { padding: 0 16px; }
  .hero      { padding: 40px 16px 36px; }
  .page-body { padding: 22px 16px 60px; }
  .masseur-item { grid-template-columns: 40px 1fr; }
  .m-contact { display: none; }
  .detail-header { flex-direction: column; gap: 14px; }
  .footer-inner  { grid-template-columns: 1fr; }
  .search-form   { flex-direction: column; }
  .search-form select { border-right: none; border-bottom: 1px solid var(--border-lt); }
  .search-form button { padding: 13px; }
  .stats-inner { overflow-x: auto; }
  .stat { white-space: nowrap; padding-right: 16px; margin-right: 16px; }
}
