/* =========================================================================
   Vita Antwerpen — stylesheet
   Zacht, warm en rustig ontwerp voor een groepspraktijk.
   Structuur: fonts · tokens · reset · basis · layout · componenten · secties
   ========================================================================= */

/* ---------- Fonts (self-hosted, GDPR-vriendelijk) ---------------------- */
@font-face {
	font-family: "Quicksand";
	src: url("/assets/fonts/quicksand-latin-var.woff2") format("woff2");
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
	unicode-range:
		U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2074, U+20AC, U+2122,
		U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: "Quicksand";
	src: url("/assets/fonts/quicksand-latin-ext-var.woff2") format("woff2");
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
	unicode-range:
		U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF,
		U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: "Poppins";
	src: url("/assets/fonts/poppins-latin-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Poppins";
	src: url("/assets/fonts/poppins-latin-500.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Poppins";
	src: url("/assets/fonts/poppins-latin-600.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/* ---------- Design tokens --------------------------------------------- */
:root {
	--cream: #fdefe6;
	--cream-deep: #f9e4d6;
	--white: #ffffff;
	--ink: #3a3f47;
	--ink-soft: #5f6672;
	--slate: #5c6473;
	--slate-dark: #4a505d;
	--slate-soft: #848b96;
	--footer: #232323;
	--footer-soft: #b9b9b9;
	--line: #ece3db;

	--blue: #bde0f3;
	--blue-deep: #a4d3ee;
	--green: #c8e2c1;
	--brand-orange: #ff7f1d;
	--brand-green: #79d304;
	--brand-yellow: #ffc800;
	--brand-blue: #6bc5eb;

	--font-display: "Quicksand", "Segoe UI", system-ui, sans-serif;
	--font-body: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;

	--maxw: 1180px;
	--maxw-narrow: 820px;
	--radius: 18px;
	--radius-lg: 26px;
	--shadow-sm: 0 4px 16px rgba(58, 63, 71, 0.06);
	--shadow: 0 12px 34px rgba(58, 63, 71, 0.1);
	--shadow-lg: 0 22px 60px rgba(58, 63, 71, 0.16);
	--gap: clamp(1.5rem, 4vw, 3rem);
	--section-y: clamp(3.5rem, 8vw, 6.5rem);
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ------------------------------------------------------ */
*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}
body {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--white);
	line-height: 1.65;
	font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img,
picture,
svg {
	display: block;
	max-width: 100%;
}
img {
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font: inherit;
	cursor: pointer;
}
ul,
ol {
	padding: 0;
	list-style: none;
}
:focus-visible {
	outline: 3px solid var(--brand-blue);
	outline-offset: 3px;
	border-radius: 4px;
}

/* ---------- Typography ------------------------------------------------- */
h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.15;
	color: var(--slate);
	letter-spacing: -0.01em;
}
h1 {
	font-size: clamp(2.2rem, 1.6rem + 3vw, 3.6rem);
}
h2 {
	font-size: clamp(1.8rem, 1.3rem + 2.2vw, 2.9rem);
}
h3 {
	font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
}
h4 {
	font-size: 1.1rem;
}
p {
	max-width: 68ch;
}
strong {
	font-weight: 600;
}

.section-title {
	text-align: center;
	color: var(--slate-soft);
	margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.section-title--icon {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
}
.section-title--icon svg {
	width: clamp(1.5rem, 3vw, 2.2rem);
	height: auto;
	flex: none;
	color: var(--brand-blue);
}
.eyebrow {
	font-family: var(--font-body);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.8rem;
	color: var(--brand-orange);
}

/* ---------- Layout helpers -------------------------------------------- */
.wrap {
	width: min(100% - 2.5rem, var(--maxw));
	margin-inline: auto;
}
.wrap--narrow {
	width: min(100% - 2.5rem, var(--maxw-narrow));
	margin-inline: auto;
}
.section {
	padding-block: var(--section-y);
}
.section--cream {
	background: var(--cream);
}
.flow > * + * {
	margin-top: 1.1em;
}
.flow > .eyebrow + h2 {
	margin-top: 0.4rem;
}
.text-center {
	text-align: center;
}
.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}
.skip-link {
	position: absolute;
	left: 1rem;
	top: -3rem;
	z-index: 200;
	background: var(--slate);
	color: #fff;
	padding: 0.6rem 1rem;
	border-radius: 10px;
	transition: top 0.2s var(--ease);
}
.skip-link:focus {
	top: 1rem;
}

/* ---------- Buttons ---------------------------------------------------- */
.btn {
	--btn-bg: var(--slate);
	--btn-fg: #fff;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--btn-bg);
	color: var(--btn-fg);
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.98rem;
	padding: 0.72rem 1.5rem;
	border: 2px solid transparent;
	border-radius: 999px;
	transition:
		transform 0.2s var(--ease),
		background 0.2s var(--ease),
		box-shadow 0.2s var(--ease);
	box-shadow: var(--shadow-sm);
	text-align: center;
}
.btn:hover {
	background: var(--slate-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}
.btn:active {
	transform: translateY(0);
}
.btn--ghost {
	--btn-bg: transparent;
	--btn-fg: var(--slate);
	border-color: var(--slate);
	box-shadow: none;
}
.btn--ghost:hover {
	background: var(--slate);
	--btn-fg: #fff;
}
.btn--light {
	--btn-bg: #fff;
	--btn-fg: var(--slate);
}
.btn--light:hover {
	--btn-bg: var(--cream);
}
.btn--sm {
	padding: 0.5rem 1.15rem;
	font-size: 0.9rem;
}
.btn svg {
	width: 1.05em;
	height: 1.05em;
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

/* Tekstlink met pijltje */
.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 500;
	color: var(--slate);
	transition: gap 0.2s var(--ease);
}
.arrow-link:hover {
	gap: 0.7rem;
}
.arrow-link svg {
	width: 1.05em;
	height: 1.05em;
	flex: none;
}

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(1.4) blur(10px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 76px;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
}
.brand__mark {
	width: 46px;
	height: auto;
	flex: none;
}
.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.brand__name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.55rem;
	letter-spacing: 0.16em;
	color: var(--slate);
}
.brand__sub {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.6rem;
	letter-spacing: 0.34em;
	color: var(--slate-soft);
	margin-top: 3px;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.5vw, 2.4rem);
}
.main-nav a {
	font-weight: 500;
	color: var(--ink-soft);
	padding: 0.35rem 0;
	position: relative;
	transition: color 0.2s var(--ease);
}
.main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background: var(--brand-orange);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s var(--ease);
}
.main-nav a:hover {
	color: var(--slate);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
	transform: scaleX(1);
}
.main-nav a[aria-current="page"] {
	color: var(--slate);
}
/* De CTA-knop in de nav houdt zijn eigen kleuren (specificiteit > .main-nav a) */
.main-nav a.btn {
	color: var(--btn-fg);
	padding: 0.55rem 1.5rem;
	font-size: 1rem;
}
.main-nav a.btn:hover {
	color: #fff;
}
.main-nav a.btn::after {
	display: none;
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: none;
	background: transparent;
	border-radius: 12px;
	position: relative;
	flex: none;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 24px;
	height: 2.5px;
	background: var(--slate);
	border-radius: 3px;
	transform: translate(-50%, -50%);
	transition: 0.25s var(--ease);
}
.nav-toggle span::before {
	transform: translate(-50%, -8px);
}
.nav-toggle span::after {
	transform: translate(-50%, 8px);
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
	position: relative;
}
.hero__media {
	position: relative;
}
.hero__media img {
	width: 100%;
	height: clamp(340px, 58vh, 620px);
	object-fit: cover;
	object-position: center 40%;
}
.hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			rgba(35, 35, 35, 0.05) 0%,
			rgba(35, 35, 35, 0) 30%,
			rgba(35, 35, 35, 0.28) 100%
		),
		linear-gradient(
			90deg,
			rgba(35, 35, 35, 0.35) 0%,
			rgba(35, 35, 35, 0) 55%
		);
}
.hero__inner {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
}
.hero__content {
	position: relative;
	z-index: 2;
	color: #fff;
	padding-bottom: clamp(2rem, 5vw, 3.5rem);
	max-width: 40ch;
}
.hero__content h1 {
	color: #fff;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__content p {
	color: rgba(255, 255, 255, 0.94);
	font-size: 1.1rem;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
	margin-top: 0.8rem;
}
.hero__content .btn-row {
	margin-top: 1.6rem;
}

.hero__inner--center {
	align-items: center;
	justify-content: center;
}
.hero__inner--center .wrap {
	display: flex;
	justify-content: center;
}
.hero__brand {
	position: relative;
	z-index: 2;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
	text-shadow: 0 2px 28px rgba(0, 0, 0, 0.3);
}
.hero__brand-mark {
	width: clamp(120px, 20vw, 200px);
	height: auto;
	margin-bottom: clamp(0.6rem, 1.5vw, 1.1rem);
	filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.25));
}
.hero__brand-name {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(2.6rem, 7vw, 4.6rem);
	letter-spacing: 0.14em;
	line-height: 1;
	color: #fff;
}
.hero__brand-sub {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: clamp(0.72rem, 1.6vw, 1rem);
	letter-spacing: 0.42em;
	margin-top: 0.7rem;
	padding-left: 0.42em;
	color: rgba(255, 255, 255, 0.92);
}

/* =========================================================================
   Media + tekst (intro / community)
   ========================================================================= */
.media-text {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap);
	align-items: center;
}
.media-text--reverse .media-text__media {
	order: 2;
}
.media-text__media img {
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.media-text__body h2 {
	margin-bottom: 0.4em;
}

/* Geschiedenis: witte kaart op cream achtergrond */
.history-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: clamp(1.6rem, 4vw, 3.5rem);
	box-shadow: var(--shadow-sm);
}
.history-card .media-text__media img {
	aspect-ratio: 4 / 5;
	box-shadow: none;
}
@media (min-width: 721px) {
	.history-card .media-text {
		grid-template-columns: 1.15fr 0.85fr;
	}
}

/* =========================================================================
   Team
   ========================================================================= */
.team-grid {
	display: grid;
	gap: clamp(1rem, 2.2vw, 1.6rem);
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.person-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--radius);
	padding: 1.5rem 1.4rem 1.4rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--line);
	transition:
		transform 0.25s var(--ease),
		box-shadow 0.25s var(--ease);
}
.person-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}
.person-card__photo {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
	border: 3px solid #fff;
	box-shadow: 0 4px 14px rgba(58, 63, 71, 0.14);
	background: var(--cream);
}
.person-card__photo--placeholder {
	display: grid;
	place-items: center;
	color: var(--slate-soft);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.7rem;
}
.person-card__name {
	color: var(--ink);
	font-size: 1.12rem;
	margin-bottom: 0.15rem;
}
.person-card__role {
	color: var(--slate);
	font-weight: 600;
	font-size: 0.86rem;
	line-height: 1.35;
	margin-bottom: 0.9rem;
}
.person-card__contact {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	font-size: 0.86rem;
	margin-bottom: 1.15rem;
}
.person-card__contact li {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--ink-soft);
}
.person-card__contact svg {
	width: 15px;
	height: 15px;
	flex: none;
	color: var(--slate-soft);
}
.person-card__contact a:hover {
	color: var(--slate);
	text-decoration: underline;
}
.person-card .btn {
	margin-top: auto;
	align-self: flex-start;
}
/* Maakt de volledige kaart klikbaar via de "Lees meer"-knop.
   De contactlijst staat erboven (z-index) en blijft klikbaar. */
.person-card .btn::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: var(--radius);
}
.person-card:hover .btn {
	transform: none;
	box-shadow: var(--shadow-sm);
}

/* =========================================================================
   Behandelingen
   ========================================================================= */
.treatment-grid {
	display: grid;
	gap: clamp(1rem, 2vw, 1.5rem);
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.treatment-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.6rem 1.5rem;
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.25s var(--ease),
		box-shadow 0.25s var(--ease),
		border-color 0.25s var(--ease);
}
.treatment-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: var(--blue-deep);
}
.treatment-card__cat {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-orange);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}
.treatment-card__cat svg {
	width: 1.05em;
	height: 1.05em;
	flex: none;
}
.treatment-card h3 {
	color: var(--ink);
	font-size: 1.2rem;
}
.treatment-card p {
	font-size: 0.92rem;
	color: var(--ink-soft);
	flex: 1;
}
.treatment-card .arrow-link {
	margin-top: 0.4rem;
	font-size: 0.92rem;
	align-self: flex-start;
}
/* Maakt de volledige kaart klikbaar via de "Meer info"-link */
.treatment-card .arrow-link::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
}

.category-block + .category-block {
	margin-top: clamp(2rem, 4vw, 3rem);
}
.category-block__title {
	color: var(--slate-soft);
	font-size: 1.4rem;
	margin-bottom: 1.2rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--line);
}

/* =========================================================================
   Locaties
   ========================================================================= */
.locations-band {
	position: relative;
	background: var(--white);
	overflow: hidden;
}
.locations-band::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--blue);
	opacity: 0.9;
	/* Volle-breedte diagonale driehoek: links laag, rechts hoog */
	clip-path: polygon(0 58%, 100% 16%, 100% 100%, 0 100%);
}
.locations-band > * {
	position: relative;
	z-index: 1;
}
.location-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(1.2rem, 3vw, 2.4rem);
}
.location-card {
	position: relative;
	display: block;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	aspect-ratio: 16 / 11;
	transition:
		transform 0.3s var(--ease),
		box-shadow 0.3s var(--ease);
}
.location-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}
.location-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}
.location-card:hover img {
	transform: scale(1.05);
}
.location-card__label {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 1.4rem 1.6rem;
	background: linear-gradient(
		180deg,
		rgba(35, 35, 35, 0) 40%,
		rgba(35, 35, 35, 0.62) 100%
	);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.3rem, 3vw, 1.8rem);
}

/* Dashed spoor dat tussen de locatiekaarten doorloopt naar Onze visie */
.locations-band__track {
	position: absolute;
	left: 45%;
	top: clamp(4.6rem, 6.5vw, 7rem);
	width: auto;
	height: clamp(380px, 48vw, 600px);
	transform: translateX(-50%);
	z-index: 1;
	pointer-events: none;
}
.locations-band > .wrap {
	z-index: 2;
}
@media (max-width: 720px) {
	.locations-band__track {
		display: none;
	}
}

/* Locatie-detail hero */
.loc-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
}
.loc-hero__text {
	background: #fff;
	padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.loc-hero__text h1 {
	margin-bottom: 0.3em;
}
.loc-hero__addr {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.3rem;
	color: var(--ink);
	margin-bottom: 1.2rem;
}
.loc-hero__map {
	background: var(--green);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	display: grid;
	place-items: center;
}
.loc-hero__map a {
	display: block;
	width: 100%;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.loc-hero__map img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

/* =========================================================================
   Specialist-detail
   ========================================================================= */
.specialist {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
.specialist__main h1 {
	color: var(--ink);
	margin-bottom: 0.1em;
}
.specialist__role {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--slate);
	font-size: 1.25rem;
	margin-bottom: 0.3rem;
}
.specialist__team-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	color: var(--ink-soft);
	margin-bottom: 1.6rem;
}
.specialist__team-badge svg {
	width: 15px;
	color: var(--brand-blue);
}
.specialist__quote {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.15rem, 2.5vw, 1.4rem);
	color: var(--slate);
	border-left: 4px solid var(--blue-deep);
	padding: 0.4rem 0 0.4rem 1.3rem;
	margin: 1.6rem 0 2rem;
	line-height: 1.4;
}
.specialist__section {
	margin-top: 2.4rem;
}
.specialist__section h2,
.specialist__bio-heading {
	font-size: 1.5rem;
	color: var(--slate-soft);
	margin-bottom: 0.8rem;
}
.specialist__bio-heading {
	margin-top: 2rem;
}
.flow > .specialist__bio-heading:first-child {
	margin-top: 0;
}
.specialist__list {
	display: grid;
	gap: 0.5rem 1.6rem;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.specialist__list-intro {
	color: var(--ink-soft);
	margin-bottom: 0.9rem;
}
.specialist__list-note {
	color: var(--ink-soft);
	margin-top: 0.9rem;
}
.specialist__list li {
	position: relative;
	padding-left: 1.5rem;
	color: var(--ink-soft);
	overflow-wrap: break-word;
}
.specialist__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--brand-green);
}

/* Pull-quote binnen de biografie */
.pullquote {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	line-height: 1.35;
	color: var(--slate);
	text-align: center;
	max-width: 28ch;
	margin: 2.6rem auto;
	padding: 0.4rem 0;
}
.pullquote::before {
	content: "";
	display: block;
	width: 44px;
	height: 3px;
	border-radius: 2px;
	background: var(--brand-orange);
	margin: 0 auto 1.2rem;
}

/* Callout-blok (samenwerking, extra aanbod, ...) */
.callout {
	margin-top: 2.4rem;
	background: var(--cream);
	border: 1px solid var(--cream-deep);
	border-radius: var(--radius-lg);
	padding: clamp(1.5rem, 3vw, 2.2rem);
}
.callout h2 {
	font-size: 1.35rem;
	color: var(--slate-soft);
	margin-bottom: 0.7rem;
}
.callout p {
	color: var(--ink-soft);
}
.callout__meta {
	margin-top: 1.1rem;
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--slate);
}
.callout--green {
	background: #e8f2e4;
	border-color: var(--green);
}
.callout--blue {
	background: #e6f2fb;
	border-color: var(--blue-deep);
}

/* Praktisch-blok op behandelpagina's */
.practical-box {
	background: var(--cream);
	border-radius: var(--radius-lg);
	padding: clamp(1.4rem, 3vw, 2rem);
	margin-top: 2.4rem;
}
.practical-box h2 {
	margin-top: 0;
	font-size: 1.3rem;
	color: var(--slate-soft);
	margin-bottom: 0.8rem;
}
.practical-box ul {
	display: grid;
	gap: 0.5rem;
	margin: 0;
}

/* Cliënt-ervaringen (citaten) */
.testimonials {
	display: grid;
	gap: 1.2rem;
	margin-top: 2rem;
}
.testimonial {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.5;
	color: var(--slate);
	background: #fff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--brand-orange);
	border-radius: var(--radius);
	padding: 1.2rem 1.5rem;
	box-shadow: var(--shadow-sm);
}

.specialist__aside {
	position: sticky;
	top: 100px;
}
.specialist__card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.6rem;
	box-shadow: var(--shadow-sm);
	text-align: center;
}
.specialist__card .person-card__photo {
	width: 130px;
	height: 130px;
	margin-inline: auto;
}
.specialist__card .person-card__name {
	font-size: 1.25rem;
}
.specialist__card .person-card__contact {
	text-align: left;
	margin-top: 1rem;
}
.tarief-box {
	background: var(--cream);
	border-radius: var(--radius);
	padding: 1.4rem 1.5rem;
	margin-top: 2rem;
}
.tarief-box h3 {
	color: var(--slate-soft);
	font-size: 1.15rem;
	margin-bottom: 0.4rem;
}

.specialist__socials {
	margin-top: 1.6rem;
	padding: 0 0.2rem;
}
.specialist__socials h3 {
	color: var(--slate-soft);
	font-size: 1.05rem;
	margin-bottom: 0.6rem;
}
.specialist__socials ul {
	display: grid;
	gap: 0.5rem;
}
.specialist__socials a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--slate);
	font-size: 0.92rem;
	word-break: break-all;
}
.specialist__socials a:hover {
	color: var(--brand-blue);
}
.specialist__socials svg {
	width: 18px;
	height: 18px;
	flex: none;
	color: var(--brand-blue);
}

.related-treatments {
	margin-top: 2.4rem;
}
.related-treatments h2 {
	font-size: 1.3rem;
	color: var(--slate-soft);
	margin-bottom: 1rem;
}
.chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}
.chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--cream);
	border: 1px solid var(--cream-deep);
	color: var(--slate);
	padding: 0.45rem 1rem;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 500;
	transition: background 0.2s var(--ease);
}
.chip:hover {
	background: var(--cream-deep);
}
.chip svg {
	width: 1em;
	height: 1em;
	flex: none;
}

/* ---------- Prose (info-pagina's) ------------------------------------- */
.prose h1 {
	color: var(--ink);
	margin-bottom: 0.6em;
}
.prose h2 {
	font-size: 1.6rem;
	color: var(--slate-soft);
	margin-top: 2rem;
	margin-bottom: 0.6rem;
}
.prose h3 {
	color: var(--ink);
	margin-top: 1.4rem;
	margin-bottom: 0.3rem;
}
.prose p,
.prose li {
	color: var(--ink-soft);
}
.prose ul {
	display: grid;
	gap: 0.4rem;
	margin: 0.6rem 0;
}
.prose ul li {
	position: relative;
	padding-left: 1.4rem;
}
.prose ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--brand-blue);
}
.prose a {
	color: var(--slate);
	border-bottom: 1px solid var(--blue-deep);
}
.prose a:hover {
	color: var(--slate-dark);
}
.prose > * + * {
	margin-top: 1rem;
}

/* ---------- FAQ ------------------------------------------------------- */
.faq-item {
	border-bottom: 1px solid var(--line);
}
.faq-item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	padding: 1.15rem 0;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--slate);
	list-style: none;
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-item summary::after {
	content: "+";
	font-size: 1.5rem;
	color: var(--brand-orange);
	transition: transform 0.2s var(--ease);
	flex: none;
}
.faq-item[open] summary::after {
	transform: rotate(45deg);
}
.faq-item p {
	color: var(--ink-soft);
	padding-bottom: 1.15rem;
	margin-top: -0.3rem;
}

/* =========================================================================
   CTA-band
   ========================================================================= */
.cta-band {
	background: #f5f6f8;
	text-align: center;
}
.cta-band h2 {
	color: var(--slate);
	margin-bottom: 0.6rem;
}
.cta-band p {
	margin: 0 auto 1.6rem;
	color: var(--ink);
}
.cta-band .btn-row {
	justify-content: center;
}

/* Breadcrumbs */
.breadcrumbs {
	font-size: 0.85rem;
	color: var(--slate-soft);
	padding-top: 1.6rem;
}
.breadcrumbs--flush {
	padding-top: 0;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}
.breadcrumbs li::after {
	content: "›";
	margin-left: 0.4rem;
	color: var(--cream-deep);
}
.breadcrumbs li:last-child::after {
	content: "";
}
.breadcrumbs a:hover {
	color: var(--slate);
	text-decoration: underline;
}
.breadcrumbs [aria-current="page"] {
	color: var(--ink-soft);
}

/* Page header (kleine subpagina's) */
.page-head {
	background: var(--cream);
	text-align: center;
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.page-head h1 {
	color: var(--slate-soft);
}
.page-head p {
	margin: 0.8rem auto 0;
	color: var(--ink-soft);
}
/* Cream page-head direct gevolgd door cream sectie: dubbele padding vermijden */
.page-head + .section--cream {
	padding-top: clamp(1rem, 2.5vw, 1.75rem);
}

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
	background: var(--footer);
	color: var(--footer-soft);
	padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-grid {
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
	grid-template-columns: auto 1.4fr auto auto auto;
	align-items: start;
}
.footer-logo img {
	width: 128px;
	height: auto;
}
.footer-col h3 {
	color: #fff;
	font-size: 1rem;
	font-family: var(--font-display);
	margin-bottom: 1rem;
	letter-spacing: 0.02em;
}
.footer-col ul {
	display: grid;
	gap: 0.6rem;
}
.footer-col a {
	color: var(--footer-soft);
	transition: color 0.2s var(--ease);
}
.footer-col a:hover {
	color: #fff;
}
.footer-address {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}
.footer-address svg {
	width: 22px;
	color: #fff;
	flex: none;
}
.footer-address address {
	font-style: normal;
	line-height: 1.7;
}
.footer-address address strong {
	color: #fff;
	font-weight: 600;
}
.footer-address address + address {
	margin-top: 1rem;
}
.socials {
	display: flex;
	gap: 0.8rem;
	margin-top: 0.2rem;
}
.socials a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1.5px solid rgba(255, 255, 255, 0.28);
	color: #fff;
	transition: 0.2s var(--ease);
}
.socials a:hover {
	background: #fff;
	color: var(--footer);
	border-color: #fff;
}
.socials svg {
	width: 20px;
	height: 20px;
}
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.2rem;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: clamp(2rem, 4vw, 3rem);
	padding-top: 1.4rem;
	font-size: 0.82rem;
	color: #8a8a8a;
}
.footer-bottom nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1rem;
}
.footer-bottom a:hover {
	color: #fff;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 960px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-logo {
		grid-column: 1 / -1;
	}
}
@media (max-width: 860px) {
	/* backdrop-filter maakt een containing block voor position:fixed,
	   waardoor het mobiele nav-paneel binnen de header zou vallen.
	   Op mobiel dus uitschakelen zodat het paneel t.o.v. de viewport staat. */
	.site-header {
		background: #fff;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
	.nav-toggle {
		display: block;
		z-index: 120;
	}
	.main-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(78vw, 340px);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0.4rem;
		background: #fff;
		padding: 6rem 2rem 2rem;
		box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
		transform: translateX(100%);
		transition: transform 0.32s var(--ease);
		z-index: 110;
	}
	.main-nav a {
		font-size: 1.2rem;
		width: 100%;
		padding: 0.6rem 0;
		border-bottom: 1px solid var(--line);
	}
	.main-nav a::after {
		display: none;
	}
	.main-nav .btn {
		margin-top: 1rem;
	}
	body.nav-open .main-nav {
		transform: translateX(0);
	}
	body.nav-open .nav-toggle span {
		background: transparent;
	}
	body.nav-open .nav-toggle span::before {
		transform: translate(-50%, 0) rotate(45deg);
	}
	body.nav-open .nav-toggle span::after {
		transform: translate(-50%, 0) rotate(-45deg);
	}
	/* Onder de header (z-index 100) zodat het paneel — dat binnen de
	   header-stacking-context valt — niet mee verduisterd wordt. */
	body.nav-open::after {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(35, 35, 35, 0.4);
		z-index: 90;
	}
	.specialist {
		grid-template-columns: 1fr;
	}
	.specialist__aside {
		position: static;
		order: -1;
		max-width: 360px;
	}
}
@media (max-width: 720px) {
	.media-text {
		grid-template-columns: 1fr;
	}
	.media-text--reverse .media-text__media {
		order: 0;
	}
	.loc-hero {
		grid-template-columns: 1fr;
	}
	.loc-hero__map {
		aspect-ratio: auto;
	}
	.hero__inner:not(.hero__inner--center) {
		align-items: flex-end;
	}
	.hero__content {
		max-width: none;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
@media (max-width: 420px) {
	.brand__name {
		font-size: 1.3rem;
	}
	.btn {
		width: 100%;
		justify-content: center;
	}
	.hero__content .btn-row .btn {
		width: auto;
	}
}
