/* ═══════════════════════════════════════════════════════════════
   Massage Therapy by Teo — Heerhugowaard
   Palet & typografie afgeleid van het logo (saliegroen / linnen)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ink:    #22301c;   /* diep groenzwart */
  --pine:   #33502e;   /* logo-groen */
  --moss:   #4c6a42;
  --sage:   #8a9a74;
  --gold:   #b99a5b;
  --linen:  #f2ecdf;
  --cream:  #faf7ef;
  --white:  #fffdf8;

  --serif: "Fraunces", "Georgia", serif;
  --sans:  "Instrument Sans", "Helvetica Neue", sans-serif;

  --ease: cubic-bezier(.22, .8, .3, 1);
  --pad: clamp(1.25rem, 5vw, 5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--pine); color: var(--cream); }

img { max-width: 100%; display: block; }
a { color: inherit; }

em {
  font-style: italic;
  font-weight: 400;
  color: var(--pine);
}

/* ── Reveal on scroll ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none !important; }
}

/* ── Buttons & links ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 999px;
  padding: .72rem 1.5rem;
  transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:active { transform: scale(.97); }
.btn-solid {
  background: var(--pine);
  color: var(--cream);
}
.btn-solid:hover { background: var(--ink); }
.btn-ghost {
  border-color: color-mix(in srgb, var(--pine) 40%, transparent);
  color: var(--pine);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--pine); background: color-mix(in srgb, var(--pine) 7%, transparent); }
.btn-lg { padding: .95rem 2rem; font-size: 1rem; }
.btn-light {
  background: var(--cream);
  color: var(--ink);
}
.btn-light:hover { background: var(--white); }

.text-link {
  display: inline-block;
  font-weight: 500;
  color: var(--pine);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--pine) 35%, transparent);
  padding-bottom: 2px;
  transition: border-color .3s;
}
.text-link:hover { border-color: var(--pine); }

/* ── Header ─────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem var(--pad);
  transition: background .4s, box-shadow .4s, padding .4s;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--pine) 12%, transparent);
  padding-block: .55rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.brand-mark { width: 46px; height: 46px; object-fit: contain; }
.brand-word { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--pine);
}
.brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: .8rem;
  color: var(--moss);
}

.site-nav { display: flex; gap: 1.8rem; }
.site-nav a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-block: .25rem;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--pine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.lang-toggle {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  gap: .3rem;
  align-items: center;
}
.lang-opt { opacity: .38; transition: opacity .3s; }
.lang-opt.is-active { opacity: 1; color: var(--pine); }
.lang-sep { opacity: .3; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease);
}
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a:not(.btn) {
  font-family: var(--serif);
  font-size: 1.9rem;
  text-decoration: none;
  color: var(--ink);
}

/* ── Hero ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--pad) 4.5rem;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='.06'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; }

.hero-photo {
  position: absolute;
  right: 0;
  top: 54%;
  transform: translateY(-50%);
  z-index: 1;
  width: min(30vw, 430px);
  border-radius: 300px 300px 20px 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--pine) 18%, transparent);
  box-shadow: 0 24px 60px rgba(34, 48, 28, .14);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4.1;
}
@media (max-width: 1120px) {
  .hero-photo { display: none; }
}
@media (min-width: 1121px) {
  .hero-inner { max-width: min(56vw, 780px); }
  .hero-title { font-size: clamp(2.7rem, 5.4vw, 4.7rem); }
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.6rem;
}
.sprig { width: 40px; height: 16px; color: var(--gold); flex: none; }

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.7rem, 7.2vw, 5.6rem);
  line-height: 1.04;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 1.8rem;
}
.hero-title .line { display: block; }
.hero-title .line > * {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px);
  animation: fadeRise 1s var(--ease) forwards;
}
.hero-title .line:nth-child(2) > * { animation-delay: .14s; }
@keyframes fadeRise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-title .line > * { opacity: 1; transform: none; animation: none; }
}
.hero-title em { color: var(--pine); }

.hero-sub {
  max-width: 34rem;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  margin-bottom: 2.4rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-foot {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--moss);
}
.hero-foot-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.scroll-hint {
  position: absolute;
  right: calc(var(--pad) / 1.4);
  bottom: 0;
  z-index: 2;
  width: 1px;
  height: 90px;
  overflow: hidden;
}
.scroll-hint-line {
  display: block;
  width: 1px;
  height: 100%;
  background: var(--pine);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ── Ticker ─────────────────────────────── */
.ticker {
  border-block: 1px solid color-mix(in srgb, var(--pine) 16%, transparent);
  background: var(--linen);
  overflow: hidden;
  padding-block: .85rem;
}
.ticker-track {
  display: flex;
  gap: 3.2rem;
  width: max-content;
  animation: tick 46s linear infinite;
}
.ticker span {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--moss);
  white-space: nowrap;
}
.ticker span::after {
  content: "❧";
  font-style: normal;
  color: var(--gold);
  font-size: .85rem;
}
@keyframes tick { to { transform: translateX(-50%); } }

/* ── Sections algemeen ─────────────────────────────── */
section { padding: clamp(4.5rem, 10vw, 8.5rem) var(--pad); }

.section-head { max-width: 1150px; margin-inline: auto; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-kicker {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.1rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 1.1rem;
}
.section-sub { color: color-mix(in srgb, var(--ink) 72%, transparent); max-width: 38rem; }

/* ── Intro ─────────────────────────────── */
.intro { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .28fr) minmax(0, .72fr);
  gap: 2rem;
  max-width: 1150px;
  margin-inline: auto;
}
.side-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.intro-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.35;
  color: var(--pine);
  margin-bottom: 1.4rem;
}
.intro-text { max-width: 44rem; margin-bottom: 1.8rem; color: color-mix(in srgb, var(--ink) 80%, transparent); }

/* ── Behandelingen ─────────────────────────────── */
.treatments { background: var(--linen); }

.treatment-list {
  max-width: 1150px;
  margin-inline: auto;
  border-top: 1px solid color-mix(in srgb, var(--pine) 22%, transparent);
}

.treatment {
  border-bottom: 1px solid color-mix(in srgb, var(--pine) 22%, transparent);
}
.treatment-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 3.4rem 1fr auto 2.4rem;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem .4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: background .35s;
}
.treatment-toggle:hover { background: color-mix(in srgb, var(--pine) 5%, transparent); }

.treatment-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--gold);
}
.treatment-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  line-height: 1.2;
}
.treatment-price {
  font-size: .9rem;
  font-weight: 500;
  color: var(--moss);
  white-space: nowrap;
}
.treatment-icon {
  position: relative;
  width: 20px;
  height: 20px;
  align-self: center;
  justify-self: end;
}
.treatment-icon::before,
.treatment-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 1.5px;
  background: var(--pine);
  transition: transform .45s var(--ease);
}
.treatment-icon::after { transform: rotate(90deg); }
.treatment.is-open .treatment-icon::after { transform: rotate(0deg); }

.treatment-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease);
}
.treatment.is-open .treatment-panel { grid-template-rows: 1fr; }
.treatment-panel-inner { overflow: hidden; }

.treatment-body {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding: .4rem .4rem 2.2rem 4.4rem;
}
.treatment-desc p { margin-bottom: 1rem; color: color-mix(in srgb, var(--ink) 82%, transparent); }
.treatment-desc p:last-child { margin-bottom: 0; }

.treatment-aside h4 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: .8rem;
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; }
.tag-cloud li {
  font-size: .84rem;
  padding: .32rem .85rem;
  border: 1px solid color-mix(in srgb, var(--pine) 30%, transparent);
  border-radius: 999px;
  color: var(--pine);
  background: color-mix(in srgb, var(--white) 55%, transparent);
}

.price-rows { list-style: none; margin-bottom: 1.6rem; }
.price-rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: .55rem;
  border-bottom: 1px dashed color-mix(in srgb, var(--pine) 25%, transparent);
  font-size: .95rem;
}
.price-rows .p-dur { color: color-mix(in srgb, var(--ink) 75%, transparent); }
.price-rows .p-amt {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--pine);
}

.treatment-note {
  font-size: .87rem;
  font-style: italic;
  color: color-mix(in srgb, var(--ink) 62%, transparent);
  margin-top: 1rem;
}

/* ── Zo werkt het ─────────────────────────────── */
.steps { background: var(--cream); }
.steps-grid {
  list-style: none;
  max-width: 1150px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.step { position: relative; padding-top: 1.4rem; }
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 2px;
  background: var(--gold);
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  color: color-mix(in srgb, var(--gold) 55%, transparent);
  line-height: 1;
  display: block;
  margin-bottom: .9rem;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: .6rem;
}
.step p { font-size: .95rem; color: color-mix(in srgb, var(--ink) 75%, transparent); }

/* ── FAQ ─────────────────────────────── */
.faq { background: var(--cream); }
.faq-list {
  max-width: 1150px;
  margin-inline: auto;
  border-top: 1px solid color-mix(in srgb, var(--pine) 22%, transparent);
}
.faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--pine) 22%, transparent);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.15rem .3rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.15rem;
  transition: background .35s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: color-mix(in srgb, var(--pine) 5%, transparent); }
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 1.5px;
  background: var(--pine);
  transition: transform .45s var(--ease);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: rotate(0deg); }
.faq-item > p {
  padding: 0 .3rem 1.3rem;
  max-width: 46rem;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
}

/* ── Quote band ─────────────────────────────── */
.quote-band {
  position: relative;
  background: var(--pine);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
#bandCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .35;
}
.quote-band blockquote { position: relative; max-width: 780px; margin-inline: auto; }
.quote-band p {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.25;
  margin-bottom: 1.4rem;
}
.quote-band cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 70%, transparent);
}

/* ── Over mij ─────────────────────────────── */
.about { background: var(--cream); }
.page-about { padding-top: clamp(8rem, 16vw, 11rem); }
.about-cta {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-nav a.is-active::after { transform: scaleX(1); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
  max-width: 1150px;
  margin-inline: auto;
}
.about-frame {
  background: var(--linen);
  border-radius: 220px 220px 18px 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--pine) 14%, transparent);
}
.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.cred-list {
  list-style: none;
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.cred-list li {
  font-size: .84rem;
  font-weight: 500;
  padding: .38rem .95rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--pine) 9%, transparent);
  color: var(--pine);
}
.about-text p { margin-bottom: 1.15rem; color: color-mix(in srgb, var(--ink) 82%, transparent); }

/* ── Foto's / De praktijk ─────────────────────────────── */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  max-width: 1150px;
  margin-inline: auto;
  align-items: start;
}
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--pine) 14%, transparent);
}
.gallery-item--drop { margin-top: clamp(1.5rem, 4vw, 3.5rem); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 1.2s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── WhatsApp ─────────────────────────────── */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #23a55a;
  color: #fff;
  box-shadow: 0 8px 24px rgba(34, 48, 28, .28);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(34, 48, 28, .34);
}
.wa-float svg { width: 30px; height: 30px; }

/* ── Praktisch ─────────────────────────────── */
.practical { background: var(--linen); }
.practical-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 1.5rem;
  max-width: 1150px;
  margin-inline: auto;
}
.practical-card {
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--pine) 14%, transparent);
  border-radius: 18px;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
}
.practical-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.hours { display: flex; flex-direction: column; }
.hours > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .7rem;
  border-bottom: 1px dashed color-mix(in srgb, var(--pine) 22%, transparent);
  font-size: .95rem;
}
.hours dt { color: color-mix(in srgb, var(--ink) 75%, transparent); }
.hours dd { font-weight: 500; color: var(--pine); }
.practical-note {
  margin-top: 1.2rem;
  font-size: .87rem;
  font-style: italic;
  color: color-mix(in srgb, var(--ink) 62%, transparent);
}
.ci-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: .6rem .9rem;
}
.ci-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .95rem;
  color: color-mix(in srgb, var(--ink) 82%, transparent);
}
.ci-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Footer ─────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--linen);
  padding: clamp(4.5rem, 9vw, 7.5rem) var(--pad) 2rem;
}
.footer-inner { max-width: 1150px; margin-inline: auto; }
.footer-head { margin-bottom: 3.5rem; }
.footer-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.footer-title em { color: var(--sage); }
.footer-sub { max-width: 32rem; color: color-mix(in srgb, var(--linen) 70%, transparent); }
.footer-head .btn { margin-top: 1.8rem; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-block: 2.8rem;
  border-block: 1px solid color-mix(in srgb, var(--linen) 15%, transparent);
}
.footer-col h4 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .9rem;
}
.footer-col p { font-size: .95rem; color: color-mix(in srgb, var(--linen) 82%, transparent); }
.footer-col a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--linen) 25%, transparent);
  transition: border-color .3s, color .3s;
}
.footer-col a:hover { color: var(--white); border-color: var(--sage); }
.footer-col--brand { display: grid; place-items: center start; }
.footer-logo {
  width: 130px;
  background: var(--cream);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--linen) 25%, transparent);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: 1.6rem;
  font-size: .82rem;
  color: color-mix(in srgb, var(--linen) 55%, transparent);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .nav-burger { display: flex; }
  .header-actions .btn { display: none; }

  .intro-grid { grid-template-columns: 1fr; }
  .side-label { writing-mode: horizontal-tb; transform: none; }

  .treatment-toggle { grid-template-columns: 2.2rem 1fr 1.6rem; }
  .treatment-price { grid-column: 2; grid-row: 2; }
  .treatment-icon { grid-column: 3; grid-row: 1 / span 2; }
  .treatment-body { grid-template-columns: 1fr; padding-left: .4rem; gap: 1.8rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: 2; }  /* op mobiel: eerst de tekst, daaronder de foto */
  .practical-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--drop { margin-top: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .scroll-hint { display: none; }
}
