/**
 * Lokaal One-Page — hoofdstylesheet.
 * Mobile-first: basis zonder media query, daarna min-width breakpoints.
 * Rustig, ruim, hoogwaardig. Systeem-fontstack (SF Pro / Segoe UI), geen webfonts,
 * geen externe assets. Kleuren/spacing via CSS custom properties; het :root-blok
 * met klantwaarden wordt inline toegevoegd vanuit client.json.
 */

/* ==========================================================================
   Reset (style.css wordt in een classic thema niet op de voorkant geladen)
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

/* ==========================================================================
   Design tokens (fallbacks — de inline :root uit client.json wint)
   ========================================================================== */

:root {
	--lop-bg: #ffffff;
	--lop-surface: #f1f4f9;
	--lop-text: #1d2733;
	--lop-ink: #0a1a30;
	--lop-muted: #4f6076;
	--lop-primary: #0855aa;
	--lop-primary-strong: color-mix(in srgb, var(--lop-primary), #00142e 32%);
	--lop-primary-contrast: #ffffff;
	--lop-accent: #f0a020;
	--lop-accent-contrast: #241a05;
	--lop-border: #e4e9f1;

	--lop-primary-soft: color-mix(in srgb, var(--lop-primary) 8%, var(--lop-bg));
	--lop-accent-soft: color-mix(in srgb, var(--lop-accent) 18%, var(--lop-bg));
	--lop-ring: color-mix(in srgb, var(--lop-primary) 38%, transparent);
	--lop-hairline: color-mix(in srgb, var(--lop-ink) 10%, transparent);

	--lop-radius: 22px;
	--lop-radius-sm: 14px;
	--lop-radius-lg: 34px;
	--lop-radius-pill: 980px;
	--lop-maxw: 1080px;
	--lop-maxw-text: 40rem;

	--lop-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
	--lop-font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--lop-step: 8px;
	--lop-s-1: 0.5rem;
	--lop-s-2: 1rem;
	--lop-s-3: 1.5rem;
	--lop-s-4: 2.5rem;
	--lop-s-5: 4rem;
	--lop-s-section: clamp(4.5rem, 3rem + 9vw, 9rem);

	--lop-header-h: 56px;

	--lop-shadow-sm: 0 1px 2px rgba(10, 26, 48, 0.04), 0 2px 8px rgba(10, 26, 48, 0.05);
	--lop-shadow-md: 0 4px 12px rgba(10, 26, 48, 0.06), 0 18px 42px -12px rgba(10, 26, 48, 0.16);
	--lop-shadow-lg: 0 8px 24px rgba(10, 26, 48, 0.08), 0 40px 80px -20px rgba(10, 26, 48, 0.24);

	--lop-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--lop-focus: 3px solid var(--lop-primary);
}

/* ==========================================================================
   Basis
   ========================================================================== */

html {
	scroll-padding-top: calc(var(--lop-header-h) + 1.5rem);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--lop-bg);
	color: var(--lop-text);
	font-family: var(--lop-font);
	font-size: 1.0625rem;
	line-height: 1.5;
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: no-preference) {
	html { scroll-behavior: smooth; }
}

a { color: var(--lop-primary); text-underline-offset: 0.15em; }

h1, h2, h3, h4 {
	font-family: var(--lop-font-display);
	color: var(--lop-ink);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.022em;
	text-wrap: balance;
	overflow-wrap: break-word;
}

h1 { font-size: clamp(2.35rem, 1.5rem + 4.4vw, 4.25rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.85rem, 1.3rem + 2.6vw, 2.9rem); letter-spacing: -0.028em; }
h3 { font-size: 1.2rem; letter-spacing: -0.012em; font-weight: 600; }

p { margin: 0; overflow-wrap: break-word; }
strong, b { font-weight: 600; }

:focus-visible {
	outline: var(--lop-focus);
	outline-offset: 3px;
	border-radius: 6px;
}

img, svg { max-width: 100%; height: auto; }

::selection { background: color-mix(in srgb, var(--lop-primary) 22%, transparent); }

.lop-visually-hidden,
.lop-form__hp {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.lop-container {
	width: 100%;
	max-width: var(--lop-maxw);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.lop-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	background: var(--lop-bg);
	color: var(--lop-text);
	padding: 0.75rem 1rem;
	border: 1px solid var(--lop-border);
	border-radius: var(--lop-radius-sm);
}
.lop-skip-link:focus { left: 0.75rem; top: 0.75rem; }

.lop-prose > * + * { margin-top: 1em; }
.lop-prose a { color: var(--lop-primary); }

.lop-adminhint {
	margin: var(--lop-s-4) 0;
	padding: var(--lop-s-2);
	background: var(--lop-surface);
	border-radius: var(--lop-radius-sm);
	color: var(--lop-muted);
}

/* ==========================================================================
   Knoppen
   ========================================================================== */

.lop-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.4rem;
	border-radius: var(--lop-radius-pill);
	border: 1px solid transparent;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.1;
	text-decoration: none;
	cursor: pointer;
	min-height: 46px;
	white-space: nowrap;
	transition: transform 0.25s var(--lop-ease), box-shadow 0.25s var(--lop-ease),
		background-color 0.2s var(--lop-ease), border-color 0.2s var(--lop-ease), color 0.2s var(--lop-ease);
}

.lop-btn__icon { flex: none; }
.lop-btn__label { position: relative; }

.lop-btn--primary {
	background: var(--lop-primary);
	color: var(--lop-primary-contrast);
	border-color: var(--lop-primary);
}

.lop-btn--ghost {
	background: transparent;
	color: var(--lop-primary);
	border-color: color-mix(in srgb, var(--lop-primary) 30%, transparent);
}

.lop-btn--accent { background: var(--lop-accent); color: var(--lop-accent-contrast); border-color: var(--lop-accent); }

.lop-btn[data-cta="whatsapp"] { background: #25d366; color: #05331b; border-color: #25d366; }

.lop-btn--sm { padding: 0.5rem 1.05rem; min-height: 40px; font-size: 0.95rem; }
.lop-btn--lg { padding: 0.95rem 1.9rem; min-height: 54px; font-size: 1.075rem; }

@media (prefers-reduced-motion: no-preference) {
	.lop-btn:hover { transform: translateY(-2px) scale(1.015); box-shadow: var(--lop-shadow-md); }
	.lop-btn:active { transform: translateY(0) scale(0.99); }
}

.lop-btn--primary:hover { background: var(--lop-primary-strong); border-color: var(--lop-primary-strong); }
.lop-btn--ghost:hover { background: var(--lop-primary-soft); border-color: var(--lop-primary); }
.lop-btn[data-cta="whatsapp"]:hover { background: #20c15c; border-color: #20c15c; }

/* Tekst-CTA in Apple-stijl (chevron die meebeweegt) */
.lop-textlink {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-weight: 600;
	color: var(--lop-primary);
	text-decoration: none;
}
.lop-textlink::after {
	content: "\203A";
	font-size: 1.15em;
	line-height: 1;
	transition: transform 0.2s var(--lop-ease);
}
.lop-textlink:hover { text-decoration: underline; }
.lop-textlink:hover::after { transform: translateX(3px); }

/* ==========================================================================
   Siteheader + navigatie
   ========================================================================== */

.lop-siteheader {
	position: sticky;
	top: 0;
	z-index: 40;
	background: color-mix(in srgb, var(--lop-bg) 72%, transparent);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s var(--lop-ease), box-shadow 0.25s var(--lop-ease), background-color 0.25s var(--lop-ease);
}

.lop-siteheader.is-scrolled {
	background: color-mix(in srgb, var(--lop-bg) 88%, transparent);
	border-bottom-color: var(--lop-hairline);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.lop-siteheader { background: var(--lop-bg); }
}

/* Navbar iets breder dan de content, met ruime marge zodat niets afsnijdt. */
.lop-siteheader .lop-container {
	max-width: 1400px;
	padding-inline: clamp(1.15rem, 3vw, 2rem);
}

.lop-siteheader__inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem;
	min-width: 0;
	min-height: var(--lop-header-h);
}

.lop-logo {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--lop-font-display);
	font-weight: 700;
	letter-spacing: -0.03em;
	text-decoration: none;
	color: var(--lop-ink);
	margin-right: auto;
	font-size: 1.075rem;
	transition: opacity 0.2s var(--lop-ease);
}
.lop-logo:hover { opacity: 0.62; }
.lop-logo__img { max-height: 34px; width: auto; }
.lop-logo__mark { height: 26px; width: auto; flex: none; }
@media (min-width: 48em) { .lop-logo__mark { height: 30px; } }
.lop-logo__text { font-family: var(--lop-font-display); font-weight: 700; letter-spacing: -0.03em; font-size: 1rem; white-space: nowrap; }

@media (min-width: 22.5em) {
	.lop-logo__text { font-size: 1.05rem; }
}

.lop-nav__toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	border: 0;
	padding: 0.5rem 0.35rem;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	min-height: 44px;
	color: var(--lop-ink);
}

.lop-nav__toggle-icon {
	position: relative;
	width: 17px; height: 1.5px;
	background: currentColor;
	transition: background-color 0.15s var(--lop-ease);
}
.lop-nav__toggle-icon::before,
.lop-nav__toggle-icon::after {
	content: "";
	position: absolute;
	left: 0;
	width: 17px; height: 1.5px;
	background: currentColor;
	transition: transform 0.22s var(--lop-ease), top 0.22s var(--lop-ease);
}
.lop-nav__toggle-icon::before { top: -5px; }
.lop-nav__toggle-icon::after { top: 5px; }
.lop-nav__toggle[aria-expanded="true"] .lop-nav__toggle-icon { background: transparent; }
.lop-nav__toggle[aria-expanded="true"] .lop-nav__toggle-icon::before { top: 0; transform: rotate(45deg); }
.lop-nav__toggle[aria-expanded="true"] .lop-nav__toggle-icon::after { top: 0; transform: rotate(-45deg); }

.lop-nav__list { list-style: none; margin: 0; padding: 0; }
.lop-nav__list:not(.is-open) { display: none; }

.lop-nav__list.is-open {
	position: absolute;
	left: 0; right: 0; top: 100%;
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0.35rem clamp(1.25rem, 5vw, 2.5rem) 1.25rem;
	background: color-mix(in srgb, var(--lop-bg) 94%, transparent);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	border-bottom: 1px solid var(--lop-hairline);
	box-shadow: var(--lop-shadow-lg);
}

.lop-nav__link {
	display: block;
	padding: 0.95rem 0.25rem;
	text-decoration: none;
	color: var(--lop-ink);
	font-weight: 500;
	font-size: 1.05rem;
	white-space: nowrap;
	border-bottom: 1px solid var(--lop-hairline);
	transition: color 0.15s var(--lop-ease);
}
.lop-nav__list.is-open .lop-nav__item:last-child .lop-nav__link { border-bottom: 0; }
.lop-nav__link:hover,
.lop-nav__link[aria-current="true"] { color: var(--lop-primary); }

.lop-siteheader__cta { display: none; }

/* ==========================================================================
   Secties
   ========================================================================== */

.lop-section {
	padding-block: var(--lop-s-section);
	position: relative;
}

.lop-section:nth-of-type(even) { background: var(--lop-surface); }

.lop-section__head {
	max-width: var(--lop-maxw-text);
	margin: 0 auto var(--lop-s-4);
	text-align: center;
}

.lop-section__eyebrow {
	display: block;
	margin-bottom: 0.7rem;
	color: var(--lop-primary);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.lop-section__eyebrow::before {
	content: "";
	display: inline-block;
	width: 6px; height: 6px;
	margin-right: 0.55rem;
	border-radius: 999px;
	background: var(--lop-accent);
	vertical-align: 0.12em;
}

.lop-section__title { margin: 0; }

.lop-section__intro {
	color: var(--lop-muted);
	max-width: var(--lop-maxw-text);
	margin: var(--lop-s-2) auto 0;
	font-size: 1.13rem;
	line-height: 1.55;
}

.lop-section__head .lop-section__intro { text-align: center; }

.lop-card {
	background: var(--lop-bg);
	border: 1px solid var(--lop-border);
	border-radius: var(--lop-radius);
	padding: var(--lop-s-3);
	box-shadow: var(--lop-shadow-sm);
	transition: transform 0.3s var(--lop-ease), box-shadow 0.3s var(--lop-ease);
}
.lop-section:nth-of-type(even) .lop-card { background: var(--lop-bg); }

@media (prefers-reduced-motion: no-preference) {
	.lop-card:hover { transform: translateY(-6px); box-shadow: var(--lop-shadow-lg); }
}

/* ==========================================================================
   Hero — gecentreerd, ruim
   ========================================================================== */

.lop-hero {
	padding-block: clamp(3.5rem, 2rem + 10vw, 8rem) var(--lop-s-section);
	text-align: center;
	background:
		radial-gradient(60rem 34rem at 50% -18%, color-mix(in srgb, var(--lop-primary) 12%, transparent), transparent 70%),
		var(--lop-bg);
}
.lop-hero:nth-of-type(even) { background: var(--lop-bg); }

.lop-hero__inner { display: flex; flex-direction: column; align-items: center; }

@media (prefers-reduced-motion: no-preference) {
	.js .lop-hero__inner > * {
		animation: lop-hero-in 0.85s var(--lop-ease) both;
	}
	.js .lop-hero__inner > :nth-child(1) { animation-delay: 0.02s; }
	.js .lop-hero__inner > :nth-child(2) { animation-delay: 0.10s; }
	.js .lop-hero__inner > :nth-child(3) { animation-delay: 0.18s; }
	.js .lop-hero__inner > :nth-child(4) { animation-delay: 0.26s; }
	.js .lop-hero__inner > :nth-child(n + 5) { animation-delay: 0.34s; }
}

@keyframes lop-hero-in {
	from { opacity: 0; transform: translateY(18px); }
}

.lop-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.95rem;
	border-radius: var(--lop-radius-pill);
	background: color-mix(in srgb, var(--lop-primary) 8%, var(--lop-bg));
	color: var(--lop-primary-strong);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.01em;
}
.lop-hero__eyebrow::before {
	content: "";
	width: 0.45rem; height: 0.45rem;
	border-radius: 999px;
	background: var(--lop-accent);
}

.lop-hero__title {
	margin: 1.4rem 0 0;
	max-width: 22ch;
}

.lop-hero__sub {
	margin: 1.3rem auto 0;
	max-width: 34rem;
	color: var(--lop-muted);
	font-size: clamp(1.15rem, 1rem + 0.7vw, 1.4rem);
	line-height: 1.5;
}

.lop-hero__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem;
	margin-top: 2rem;
}

.lop-hero__media { width: 100%; margin-top: clamp(2.5rem, 6vw, 4rem); }

.lop-hero__figure {
	max-width: var(--lop-maxw);
	margin: 0 auto;
	border-radius: var(--lop-radius-lg);
	overflow: hidden;
	box-shadow: var(--lop-shadow-lg);
}
.lop-hero__figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }

.lop-hero__checks {
	list-style: none;
	margin: clamp(2.5rem, 6vw, 3.5rem) auto 0;
	padding: 0;
	max-width: var(--lop-maxw);
	display: grid;
	gap: 1.25rem;
	text-align: left;
}

.lop-hero__check {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.7rem;
	align-items: start;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
	color: var(--lop-text);
}

.lop-hero__check-icon {
	margin-top: 0.05rem;
	width: 1.35rem; height: 1.35rem;
	flex: none;
	color: color-mix(in srgb, var(--lop-accent), #7a4f00 30%);
}

/* ==========================================================================
   Grids
   ========================================================================== */

.lop-services__grid,
.lop-benefits__grid {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: var(--lop-maxw);
	display: grid;
	gap: 1.25rem;
}

.lop-services__grid { margin-top: var(--lop-s-4); }

/* Diensten-kaarten */
.lop-service {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: var(--lop-s-3) var(--lop-s-3) calc(var(--lop-s-3) + 0.25rem);
}

.lop-service__name { margin: 0 0 0.5rem; padding-right: 1.75rem; }

.lop-service__name::after {
	content: "\2197";
	position: absolute;
	top: var(--lop-s-3);
	right: var(--lop-s-3);
	font-size: 1.05rem;
	color: var(--lop-primary);
	opacity: 0;
	transform: translate(-4px, 4px);
	transition: opacity 0.25s var(--lop-ease), transform 0.25s var(--lop-ease);
}
.lop-service:hover .lop-service__name::after { opacity: 1; transform: none; }

.lop-service__desc { color: var(--lop-muted); line-height: 1.55; }

.lop-service__price {
	align-self: flex-start;
	margin-top: 0.95rem;
	padding: 0.3rem 0.75rem;
	border-radius: var(--lop-radius-pill);
	background: var(--lop-primary-soft);
	color: var(--lop-primary-strong);
	font-weight: 600;
	font-size: 0.88rem;
}

/* Voordelen */
.lop-benefits__grid { margin-top: var(--lop-s-4); }

.lop-benefit {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: var(--lop-s-3);
	background: var(--lop-bg);
	border: 1px solid var(--lop-border);
	border-radius: var(--lop-radius);
	box-shadow: var(--lop-shadow-sm);
	transition: transform 0.3s var(--lop-ease), box-shadow 0.3s var(--lop-ease);
}
@media (prefers-reduced-motion: no-preference) {
	.lop-benefit:hover { transform: translateY(-6px); box-shadow: var(--lop-shadow-lg); }
}

.lop-benefit__icon {
	width: 2.9rem; height: 2.9rem;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: linear-gradient(160deg, color-mix(in srgb, var(--lop-primary) 14%, var(--lop-bg)), var(--lop-primary-soft));
	color: var(--lop-primary);
	margin-bottom: 0.6rem;
}

.lop-benefit__title { margin: 0; }
.lop-benefit__text { color: var(--lop-muted); line-height: 1.55; }

/* ==========================================================================
   Over ons
   ========================================================================== */

.lop-about__inner {
	display: grid;
	gap: var(--lop-s-4);
	align-items: center;
	max-width: var(--lop-maxw);
	margin: 0 auto;
}
.lop-about__body { max-width: 46rem; }
.lop-about .lop-section__head { text-align: left; margin-left: 0; margin-right: 0; }
.lop-about__text { font-size: 1.15rem; line-height: 1.65; color: var(--lop-text); }
.lop-about__media img { border-radius: var(--lop-radius-lg); box-shadow: var(--lop-shadow-lg); width: 100%; }

/* ==========================================================================
   Reviews
   ========================================================================== */

.lop-reviews__aggregate {
	text-align: center;
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--lop-ink);
	margin: 0 0 var(--lop-s-4);
}

.lop-reviews__list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: var(--lop-maxw);
	display: grid;
	gap: 1.25rem;
}

.lop-review__rating { color: var(--lop-accent); letter-spacing: 3px; font-size: 1.05rem; }
.lop-review__text {
	margin: 0.7rem 0;
	font-size: 1.15rem;
	line-height: 1.6;
	font-style: normal;
	color: var(--lop-ink);
	font-weight: 500;
	letter-spacing: -0.01em;
}
.lop-review__text::before { content: "\201C"; }
.lop-review__text::after { content: "\201D"; }
.lop-review__meta { color: var(--lop-muted); font-size: 0.95rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.lop-review__author { font-style: normal; font-weight: 600; color: var(--lop-text); }

/* ==========================================================================
   Galerij
   ========================================================================== */

.lop-gallery__grid {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: var(--lop-maxw);
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}

.lop-gallery__item { overflow: hidden; border-radius: var(--lop-radius); }
.lop-gallery__img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--lop-ease);
}
@media (prefers-reduced-motion: no-preference) {
	.lop-gallery__item:hover .lop-gallery__img { transform: scale(1.05); }
}

/* ==========================================================================
   FAQ — hairline stijl (Apple support)
   ========================================================================== */

.lop-faq__list {
	max-width: 48rem;
	margin: var(--lop-s-4) auto 0;
	border-top: 1px solid var(--lop-hairline);
}

.lop-faq__item {
	border-bottom: 1px solid var(--lop-hairline);
	padding: 0 0.25rem;
}

.lop-faq__q {
	cursor: pointer;
	font-family: var(--lop-font-display);
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: -0.015em;
	color: var(--lop-ink);
	padding: 1.3rem 2.25rem 1.3rem 0;
	list-style: none;
	position: relative;
	transition: color 0.15s var(--lop-ease);
}
.lop-faq__q::-webkit-details-marker { display: none; }
.lop-faq__q:hover { color: var(--lop-primary); }

.lop-faq__q::after {
	content: "";
	position: absolute;
	right: 0.35rem;
	top: 50%;
	width: 10px; height: 10px;
	margin-top: -7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.25s var(--lop-ease);
	color: var(--lop-muted);
}
.lop-faq__item[open] .lop-faq__q::after { transform: rotate(-135deg); margin-top: -2px; }

.lop-faq__a { padding: 0 1.5rem 1.5rem 0; color: var(--lop-muted); line-height: 1.7; }
.lop-faq__a p { color: var(--lop-muted); }
.lop-faq__a p + p { margin-top: 0.8em; }

/* ==========================================================================
   Openingstijden
   ========================================================================== */

.lop-hours .lop-container { max-width: 40rem; }

.lop-hours__status {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.9rem;
	border-radius: var(--lop-radius-pill);
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: var(--lop-s-3);
}
.lop-hours__status::before {
	content: "";
	width: 0.5rem; height: 0.5rem;
	border-radius: 999px;
	background: currentColor;
}
.lop-hours__status.is-open { color: #1a7f37; background: color-mix(in srgb, #1a7f37 12%, var(--lop-bg)); }
.lop-hours__status.is-closed { color: var(--lop-muted); background: var(--lop-surface); }

.lop-hours__table { border-collapse: collapse; width: 100%; }
.lop-hours__table th,
.lop-hours__table td {
	text-align: left;
	padding: 0.8rem 0.25rem;
	border-bottom: 1px solid var(--lop-hairline);
	font-variant-numeric: tabular-nums;
}
.lop-hours__table th { font-weight: 400; color: var(--lop-muted); }
.lop-hours__table td { text-align: right; }
.lop-hours__table tr.is-today th,
.lop-hours__table tr.is-today td { font-weight: 700; color: var(--lop-ink); }
.lop-hours__note { color: var(--lop-muted); margin-top: var(--lop-s-2); font-size: 0.95rem; }

/* ==========================================================================
   Locatie
   ========================================================================== */

.lop-location__inner { display: grid; gap: var(--lop-s-4); max-width: var(--lop-maxw); margin: 0 auto; }
.lop-location .lop-section__head { text-align: left; }
.lop-location__address { font-style: normal; margin: var(--lop-s-2) 0; line-height: 1.9; font-size: 1.1rem; color: var(--lop-ink); }
.lop-location__routes { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.lop-location__map { border-radius: var(--lop-radius-lg); overflow: hidden; box-shadow: var(--lop-shadow-lg); }
.lop-location__map iframe { width: 100%; height: 360px; display: block; border: 0; }

/* ==========================================================================
   Contact + formulier
   ========================================================================== */

.lop-contact__inner {
	display: grid;
	gap: var(--lop-s-4);
	max-width: var(--lop-maxw);
	margin: 0 auto;
	text-align: left;
}
.lop-contact .lop-section__head { text-align: left; max-width: none; margin: 0 0 var(--lop-s-3); }
.lop-contact .lop-section__intro { text-align: left; margin-left: 0; max-width: 40ch; }
.lop-about .lop-section__head,
.lop-location .lop-section__head { max-width: none; margin: 0 0 var(--lop-s-3); }

.lop-contact__details { list-style: none; padding: 0; margin: var(--lop-s-3) 0 0; display: grid; gap: 0.85rem; }
.lop-contact__details li { display: grid; gap: 0.15rem; }
.lop-contact__label { font-size: 0.78rem; color: var(--lop-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.lop-contact__details a { font-weight: 600; font-size: 1.1rem; text-decoration: none; color: var(--lop-ink); transition: color 0.15s var(--lop-ease); }
.lop-contact__details a:hover { color: var(--lop-primary); }

.lop-contact__form-wrap {
	background: var(--lop-bg);
	border-radius: var(--lop-radius-lg);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	box-shadow: var(--lop-shadow-md);
}
.lop-section:nth-of-type(even) .lop-contact__form-wrap { background: var(--lop-bg); }

.lop-form { display: grid; gap: var(--lop-s-2); }
.lop-form > input[type="hidden"] { display: none; }
.lop-field { display: grid; gap: 0.4rem; margin: 0; min-width: 0; }
.lop-field ::placeholder { color: color-mix(in srgb, var(--lop-muted) 70%, transparent); }
.lop-field label { font-weight: 600; font-size: 0.95rem; color: var(--lop-ink); }
.lop-field__req { color: color-mix(in srgb, var(--lop-accent), #7a4f00 20%); }

.lop-field input,
.lop-field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--lop-border);
	border-radius: var(--lop-radius-sm);
	background: var(--lop-bg);
	color: var(--lop-text);
	font-family: inherit;
	transition: border-color 0.15s var(--lop-ease), box-shadow 0.15s var(--lop-ease);
}
.lop-field input:focus,
.lop-field textarea:focus {
	outline: none;
	border-color: var(--lop-primary);
	box-shadow: 0 0 0 4px var(--lop-ring);
}
.lop-field textarea { resize: vertical; min-height: 9rem; }

.lop-form__actions { margin: 0.5rem 0 0; }
.lop-form__actions .lop-btn { width: 100%; }

.lop-form__notice {
	padding: var(--lop-s-2);
	border-radius: var(--lop-radius-sm);
	margin-bottom: var(--lop-s-2);
	font-weight: 500;
}
.lop-form__notice.is-success { color: #0f5c2b; background: color-mix(in srgb, #1a7f37 12%, var(--lop-bg)); }
.lop-form__notice.is-error { color: #8c1d18; background: color-mix(in srgb, #b3261e 10%, var(--lop-bg)); }

/* ==========================================================================
   Sitefooter
   ========================================================================== */

.lop-sitefooter {
	background: var(--lop-ink);
	color: color-mix(in srgb, #ffffff 74%, var(--lop-ink));
	padding-block: var(--lop-s-5);
}
.lop-sitefooter a { color: #fff; text-decoration: none; transition: opacity 0.15s var(--lop-ease); }
.lop-sitefooter a:hover { opacity: 0.7; }
.lop-sitefooter__logo { width: auto; max-height: 76px; margin-bottom: var(--lop-s-3); }
.lop-sitefooter__contact { list-style: none; padding: 0; margin: 0 0 var(--lop-s-2); display: grid; gap: 0.4rem; font-size: 1.05rem; }
.lop-sitefooter__legal { color: color-mix(in srgb, #ffffff 45%, var(--lop-ink)); font-size: 0.9rem; margin-top: var(--lop-s-2); }

/* ==========================================================================
   Sticky mobiele CTA-balk
   ========================================================================== */

.lop-sticky-cta {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 45;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 1fr;
	gap: 0.5rem;
	width: min(100%, 30rem);
	margin-inline: auto;
	padding: 0.55rem 0.7rem;
	padding-bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
	background: color-mix(in srgb, var(--lop-bg) 82%, transparent);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	border-top: 1px solid var(--lop-hairline);
}
.lop-sticky-cta .lop-btn {
	width: 100%;
	min-height: 46px;
	padding-inline: 0.6rem;
	font-size: 0.95rem;
	box-shadow: none;
}
.lop-sticky-cta .lop-btn:hover { transform: none; box-shadow: none; }

body.has-sticky-cta { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }

/* ==========================================================================
   Preview-badge
   ========================================================================== */

.lop-preview-badge {
	position: fixed;
	top: 0; right: 0;
	z-index: 90;
	background: var(--lop-accent);
	color: var(--lop-accent-contrast);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.3rem 0.7rem;
	border-bottom-left-radius: var(--lop-radius-sm);
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
	.js .lop-reveal {
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 0.7s var(--lop-ease), transform 0.7s var(--lop-ease);
	}
	.js .lop-reveal.is-visible { opacity: 1; transform: none; }
	}

/* ==========================================================================
   Breakpoints (min-width)
   ========================================================================== */

@media (min-width: 40em) {
	.lop-hero__checks { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 2.5rem; max-width: 46rem; }
	.lop-services__grid,
	.lop-benefits__grid { grid-template-columns: repeat(2, 1fr); }
	.lop-gallery__grid { grid-template-columns: repeat(3, 1fr); }
	.lop-reviews__list { grid-template-columns: repeat(2, 1fr); }
	.lop-form__actions .lop-btn { width: auto; }
}

@media (min-width: 48em) {
	:root { --lop-header-h: 62px; }

	/* Inline menu; hamburger weg. Logo links, menu + CTA flush rechts. */
	.lop-nav { flex: 0 1 auto; min-width: 0; }
	.lop-nav__toggle { display: none; }
	.lop-nav__list,
	.lop-nav__list:not(.is-open) {
		position: static;
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: flex-end;
		gap: 0;
		padding: 0;
		background: none;
		box-shadow: none;
		border: 0;
	}
	.lop-nav__item { flex: 0 0 auto; }
	.lop-nav__link { display: block; padding: 0.4rem 0.6rem; border-bottom: 0; font-size: 0.9rem; font-weight: 500; }
	.lop-siteheader__cta { flex: 0 0 auto; }

	.lop-about__inner:has(.lop-about__media) { grid-template-columns: 1fr 1fr; gap: var(--lop-s-5); }
	.lop-location__inner:has(.lop-location__map) { grid-template-columns: 1fr 1fr; align-items: start; }
	.lop-contact__inner:has(.lop-contact__form-wrap) { grid-template-columns: 0.82fr 1.18fr; align-items: start; }
}

@media (min-width: 64em) {
	:root { --lop-header-h: 66px; }

	.lop-services__grid { grid-template-columns: repeat(3, 1fr); }
	.lop-benefits__grid { grid-template-columns: repeat(3, 1fr); }
	.lop-gallery__grid { grid-template-columns: repeat(4, 1fr); }

	.lop-nav__link { padding: 0.42rem 0.72rem; font-size: 0.95rem; }
}

/* Ruim genoeg voor logo + menu + header-CTA naast elkaar. */
@media (min-width: 80em) {
	.lop-nav__list { margin-right: 0.9rem; }
	.lop-siteheader__cta { display: block; flex: none; }
	.lop-siteheader__cta .lop-btn { padding-inline: 1.25rem; }

	.lop-sticky-cta { display: none; }
	body.has-sticky-cta { padding-bottom: 0; }
}

/* ==========================================================================
   prefers-reduced-motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}
