/* =========================================================
   KLIPT — main stylesheet
   Mobile-first. Breakpoints ~640 / 960 / 1280.
   ========================================================= */

/* ---------- Fonts (self-hosted, no external requests) ---------- */

@font-face {
	font-family: "Archivo Variable";
	src: url("../fonts/archivo-variable.woff2") format("woff2-variations"), url("../fonts/archivo-variable.woff2") format("woff2");
	font-weight: 100 900;
	font-stretch: 62.5% 125%;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Instrument Sans";
	src: url("../fonts/instrument-sans-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Instrument Sans";
	src: url("../fonts/instrument-sans-500.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Instrument Sans";
	src: url("../fonts/instrument-sans-600.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "IBM Plex Mono";
	src: url("../fonts/ibm-plex-mono-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "IBM Plex Mono";
	src: url("../fonts/ibm-plex-mono-500.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/* ---------- Design tokens ---------- */

:root {
	--nacht: #0c0d0f;
	--inkt: #1a1c21;
	--limoen: #c8f400;
	--papier: #f1efe8;
	--staal: #8b909a;
	--staal-donker: #565a62;

	--font-display: "Archivo Variable", Arial, sans-serif;
	--font-body: "Instrument Sans", Arial, sans-serif;
	--font-mono: "IBM Plex Mono", ui-monospace, monospace;

	--container-max: 1280px;
	--gutter: 24px;

	--dur-fast: 0.18s;
	--dur-base: 0.35s;
	--dur-slow: 0.6s;
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (min-width: 960px) {
	:root {
		--gutter: 56px;
	}
}

/* ---------- Reset / base ---------- */

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

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;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

body {
	margin: 0;
	background: var(--papier);
	color: var(--nacht);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 800;
	font-stretch: 112%;
	line-height: 1.02;
	letter-spacing: -0.01em;
}

p {
	margin: 0;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

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

/* ---------- Accessibility helpers ---------- */

.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;
	top: -100px;
	left: 24px;
	z-index: 1000;
	background: var(--limoen);
	color: var(--nacht);
	padding: 12px 20px;
	font-family: var(--font-mono);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.75rem;
	transition: top var(--dur-fast) var(--ease);
}

.skip-link:focus {
	top: 24px;
}

:focus-visible {
	outline: 2px solid var(--limoen);
	outline-offset: 2px;
}

/* ---------- Layout ---------- */

.section {
	padding-block: clamp(56px, 9vw, 128px);
	position: relative;
}

.section__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.section--dark {
	background: var(--nacht);
	color: var(--papier);
}

.section--light {
	background: var(--papier);
	color: var(--nacht);
}

.section--lime {
	background: var(--limoen);
	color: var(--nacht);
}

.section--dark + .section--dark,
.section--light + .section--light {
	border-top: 1px solid transparent;
}

.section--dark {
	border-top: 1px solid var(--staal);
}

.section--light {
	border-top: 1px solid rgba(12, 13, 15, 0.12);
}

.section--lime {
	border-top: 1px solid var(--nacht);
}

/* ---------- Type ---------- */

.mono-label {
	font-family: var(--font-mono);
	font-weight: 500;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--staal);
	margin: 0;
}

.section--light .mono-label,
.section--lime .mono-label {
	color: var(--staal-donker);
}

.section-title {
	font-size: clamp(2rem, 4.4vw, 3.4rem);
	margin-bottom: 0.6em;
}

.section-intro {
	max-width: 46ch;
	font-size: 1.125rem;
	color: var(--staal-donker);
}

.section-head {
	margin-bottom: clamp(32px, 5vw, 56px);
}

.accent {
	color: var(--limoen);
}

/* ---------- Buttons ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 28px;
	font-family: var(--font-mono);
	font-weight: 500;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: 0;
	transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
	white-space: nowrap;
}

.btn--lime {
	background: var(--limoen);
	color: var(--nacht);
	border-color: var(--limoen);
}

.btn--lime:hover {
	background: transparent;
	color: var(--limoen);
}

.section--lime .btn--lime,
.section--lime .btn--dark {
	background: var(--nacht);
	color: var(--papier);
	border-color: var(--nacht);
}

.section--lime .btn--dark:hover {
	background: transparent;
	color: var(--nacht);
}

.btn--outline {
	background: transparent;
	color: currentColor;
	border-color: currentColor;
}

.section--dark .btn--outline:hover {
	background: var(--papier);
	color: var(--nacht);
	border-color: var(--papier);
}

.section--light .btn--outline:hover,
.section--lime .btn--outline:hover {
	background: var(--nacht);
	color: var(--papier);
	border-color: var(--nacht);
}

.btn--dark {
	background: var(--nacht);
	color: var(--papier);
	border-color: var(--nacht);
}

/* ---------- Header ---------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--nacht);
	border-bottom: 1px solid var(--staal);
}

.site-header__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 76px;
}

.site-header__logo {
	display: block;
	width: 84px;
	color: var(--papier);
}

@media (min-width: 960px) {
	.site-header__logo {
		width: 96px;
	}
}

.klipt-logo {
	display: block;
	width: 100%;
	height: auto;
}

.site-header__nav {
	display: none;
}

@media (min-width: 960px) {
	.site-header__nav {
		display: block;
	}
}

.nav-menu {
	display: flex;
	gap: 28px;
}

.nav-menu a {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--staal);
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease);
}

.nav-menu a:hover {
	color: var(--papier);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.site-header .site-header__actions .btn {
	display: none;
}

@media (min-width: 640px) {
	.site-header .site-header__actions .btn {
		display: inline-flex;
	}
}

.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
}

@media (min-width: 960px) {
	.menu-toggle {
		display: none;
	}
}

.menu-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--papier);
}

/* ---------- Mobile menu ---------- */

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: var(--nacht);
	color: var(--papier);
	display: flex;
	flex-direction: column;
	padding: 0;
}

.mobile-menu[hidden] {
	display: none;
}

.mobile-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px var(--gutter);
	border-bottom: 1px solid var(--staal);
	height: 76px;
}

.mobile-menu__logo {
	display: block;
	width: 84px;
	color: var(--papier);
}

.menu-close {
	position: relative;
	width: 40px;
	height: 40px;
}

.menu-close__bar {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 2px;
	background: var(--papier);
	transform-origin: center;
}

.menu-close__bar:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close__bar:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav {
	flex: 1;
	overflow-y: auto;
	padding: 32px var(--gutter);
}

.mobile-menu__list li + li {
	margin-top: 4px;
}

.mobile-menu__list a {
	display: block;
	padding: 14px 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.75rem;
	text-decoration: none;
	color: var(--papier);
	border-bottom: 1px solid var(--staal);
}

.mobile-menu__cta {
	margin: var(--gutter);
}

/* ---------- Timeline motif ---------- */

.timeline {
	position: relative;
	width: 100%;
	height: 20px;
}

.timeline__baseline {
	position: absolute;
	inset-inline: 0;
	top: 50%;
	height: 6px;
	transform: translateY(-50%);
}

.timeline__baseline::before,
.timeline__baseline::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-repeat: repeat-x;
}

.timeline__baseline::before {
	height: 1px;
	background-image: repeating-linear-gradient(
		to right,
		var(--staal) 0,
		var(--staal) 1px,
		transparent 1px,
		transparent 12px
	);
}

.timeline__baseline::after {
	height: 6px;
	background-image: repeating-linear-gradient(
		to right,
		var(--staal) 0,
		var(--staal) 1px,
		transparent 1px,
		transparent 96px
	);
}

.section--light .timeline__baseline::before {
	background-image: repeating-linear-gradient(
		to right,
		var(--nacht) 0,
		var(--nacht) 1px,
		transparent 1px,
		transparent 12px
	);
}

.section--light .timeline__baseline::after {
	background-image: repeating-linear-gradient(
		to right,
		var(--nacht) 0,
		var(--nacht) 1px,
		transparent 1px,
		transparent 96px
	);
}

.timeline__segment {
	position: absolute;
	top: 50%;
	left: var(--timeline-segment-left, 38%);
	width: var(--timeline-segment-width, 20%);
	height: 6px;
	transform: translateY(-50%);
	background: var(--limoen);
}

.timeline--animated .timeline__segment {
	left: 8%;
}

@media (prefers-reduced-motion: no-preference) {
	.timeline--animated .timeline__segment {
		animation: klipt-segment-drift 7s var(--ease) infinite alternate;
	}
}

@keyframes klipt-segment-drift {
	from {
		left: 6%;
	}
	to {
		left: 58%;
	}
}

.timeline__bracket {
	position: absolute;
	top: -7px;
	width: 6px;
	height: 20px;
	border-block: 2px solid var(--limoen);
}

.timeline__bracket--in {
	left: 0;
	border-inline-start: 2px solid var(--limoen);
}

.timeline__bracket--out {
	right: 0;
	border-inline-end: 2px solid var(--limoen);
}

/* ---------- Hero ---------- */

.hero {
	padding-block-end: clamp(32px, 5vw, 56px);
}

.hero__inner {
	display: grid;
	gap: 48px;
}

@media (min-width: 960px) {
	.hero__inner {
		grid-template-columns: 7fr 5fr;
		align-items: center;
		gap: 32px;
	}
}

.hero__copy {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.hero__heading {
	font-size: clamp(2.75rem, 7vw, 6.5rem);
	line-height: 1.0;
	letter-spacing: -0.02em;
}

.hero__subtext {
	max-width: 46ch;
	font-size: 1.15rem;
	color: var(--staal);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 8px;
}

.hero__region {
	margin-top: 8px;
}

.hero__frame {
	position: relative;
	aspect-ratio: 9 / 16;
	max-width: 240px;
	margin-inline: auto;
	background: var(--inkt);
	border: 1px solid var(--staal);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

@media (min-width: 640px) {
	.hero__frame {
		max-width: 320px;
	}
}

@media (min-width: 960px) {
	.hero__frame {
		margin-inline-start: auto;
		margin-inline-end: 0;
	}
}

.hero__frame-video {
	flex: 1 1 auto;
	min-height: 0;
	width: 100%;
	object-fit: cover;
	background: var(--inkt);
}

.hero__frame-timeline {
	flex: 0 0 auto;
	padding: 12px 16px;
	border-top: 1px solid var(--staal);
}

@media (min-width: 640px) {
	.hero__frame-timeline {
		padding: 14px 20px;
	}
}

.hero__baseline {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--gutter);
	margin-top: clamp(32px, 5vw, 56px);
}

/* ---------- Platforms strip ---------- */

.platforms {
	padding-block: 20px;
	border-bottom: 1px solid var(--staal);
}

.platforms__text {
	text-align: center;
}

/* ---------- Steps (wat wij doen) ---------- */

.steps {
	display: grid;
	gap: 40px;
}

@media (min-width: 960px) {
	.steps {
		grid-template-columns: repeat(12, 1fr);
		column-gap: 32px;
		row-gap: 56px;
	}

	.steps__item--1 {
		grid-column: 1 / span 5;
	}

	.steps__item--2 {
		grid-column: 6 / span 7;
		margin-top: 64px;
	}

	.steps__item--3 {
		grid-column: 2 / span 6;
	}
}

.steps__item {
	border-top: 1px solid rgba(12, 13, 15, 0.12);
	padding-top: 20px;
}

.steps__number {
	display: block;
	margin-bottom: 12px;
}

.steps__title {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	margin-bottom: 12px;
}

.steps__text {
	max-width: 42ch;
	color: var(--staal-donker);
}

/* ---------- Statements (waar wij voor staan) ---------- */

.statements__list {
	border-top: 1px solid var(--staal);
}

.statements__item {
	display: grid;
	gap: 4px 32px;
	padding-block: 28px;
	border-bottom: 1px solid var(--staal);
}

@media (min-width: 640px) {
	.statements__item {
		grid-template-columns: 60px 1fr;
		align-items: baseline;
	}
}

.statements__number {
	grid-row: 1 / span 2;
}

.statements__title {
	font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.statements__text {
	color: var(--staal);
	max-width: 56ch;
}

@media (min-width: 640px) {
	.statements__text {
		grid-column: 2;
	}
}

/* ---------- Benefits (voordelen) ---------- */

.benefits__inner {
	display: grid;
	gap: 32px;
}

@media (min-width: 960px) {
	.benefits__inner {
		grid-template-columns: 5fr 7fr;
		gap: 48px;
	}
}

.benefits__list {
	border-top: 1px solid rgba(12, 13, 15, 0.12);
}

.benefits__item {
	padding-block: 24px;
	border-bottom: 1px solid rgba(12, 13, 15, 0.12);
}

.benefits__title {
	font-size: 1.25rem;
	margin-bottom: 6px;
}

.benefits__text {
	color: var(--staal-donker);
	max-width: 46ch;
}

/* ---------- Panels (voor wie) ---------- */

.panels {
	display: grid;
	gap: 1px;
	background: var(--staal);
	border: 1px solid var(--staal);
}

@media (min-width: 960px) {
	.panels {
		grid-template-columns: repeat(3, 1fr);
	}
}

.panels__item {
	background: var(--nacht);
	padding: clamp(28px, 3vw, 40px);
}

.panels__index {
	display: block;
	margin-bottom: 24px;
}

.panels__title {
	font-size: clamp(1.6rem, 2.6vw, 2.1rem);
	margin-bottom: 12px;
}

.panels__text {
	color: var(--staal);
	max-width: 32ch;
}

/* ---------- Sample clips ---------- */

.clips__grid {
	display: grid;
	gap: 24px;
}

@media (min-width: 640px) {
	.clips__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.clips__item {
	aspect-ratio: 9 / 16;
	background: var(--inkt);
	border: 1px solid var(--nacht);
}

.clips__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Packages ---------- */

.package-grid {
	display: grid;
	gap: 1px;
	background: var(--staal);
	border: 1px solid var(--staal);
}

@media (min-width: 640px) {
	.package-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.package-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.package-card {
	background: var(--nacht);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
}

.package-card--featured {
	background: var(--inkt);
}

.package-card__badge {
	color: var(--limoen);
}

.package-card__name {
	font-size: 1.5rem;
}

.package-card__price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}

.package-card__amount {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 2rem;
}

.package-card__clips {
	color: var(--staal);
	font-size: 0.9375rem;
}

.package-card__features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.package-card__features li {
	font-size: 0.9375rem;
	color: var(--papier);
	padding-top: 10px;
	border-top: 1px solid var(--staal);
}

.package-card__cta {
	margin-top: auto;
	width: 100%;
}

/* ---------- Reviews ---------- */

.review-spotlight {
	position: relative;
}

.review-spotlight__track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 0;
	scrollbar-width: none;
	border-top: 1px solid rgba(12, 13, 15, 0.12);
}

.review-spotlight__track::-webkit-scrollbar {
	display: none;
}

.review-spotlight__item {
	flex: 0 0 100%;
	scroll-snap-align: start;
	margin: 0;
	padding-block: 40px;
}

.review-spotlight__mark {
	display: block;
	font-family: var(--font-display);
	font-size: 5rem;
	line-height: 1;
	color: var(--limoen);
	margin-bottom: 8px;
}

.review-spotlight__quote p {
	font-family: var(--font-display);
	font-weight: 700;
	font-stretch: 100%;
	font-size: clamp(1.5rem, 3.2vw, 2.4rem);
	line-height: 1.2;
	max-width: 26ch;
}

.review-spotlight__author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}

.review-spotlight__photo {
	border-radius: 50%;
	width: 56px;
	height: 56px;
	object-fit: cover;
}

.review-spotlight__name {
	display: block;
	font-weight: 600;
}

.review-spotlight__role {
	display: block;
	margin-top: 2px;
}

.review-spotlight__controls {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.review-spotlight__prev,
.review-spotlight__next {
	width: 44px;
	height: 44px;
	border: 1px solid var(--nacht);
	font-size: 1.125rem;
}

/* ---------- Trust grid (reviews-section fallback, no fabricated quotes) ---------- */

.trust-grid {
	display: grid;
	gap: 1px;
	background: rgba(12, 13, 15, 0.12);
	border: 1px solid rgba(12, 13, 15, 0.12);
}

@media (min-width: 640px) {
	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.trust-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.trust-grid__item {
	background: var(--papier);
	padding: clamp(24px, 3vw, 32px);
}

.trust-grid__title {
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.trust-grid__text {
	color: var(--staal-donker);
	max-width: 30ch;
}

/* ---------- FAQ ---------- */

.faq-list {
	border-top: 1px solid var(--staal);
}

.faq-item {
	border-bottom: 1px solid var(--staal);
}

.faq-item__question {
	padding-block: 22px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.1rem, 1.8vw, 1.4rem);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__question::after {
	content: "+";
	font-family: var(--font-mono);
	font-size: 1.5rem;
	color: var(--limoen);
	flex-shrink: 0;
}

.faq-item[open] .faq-item__question::after {
	content: "\2212";
}

.faq-item__answer {
	padding-bottom: 24px;
	max-width: 60ch;
	color: var(--staal);
}

/* ---------- Contact ---------- */

.contact__inner {
	display: grid;
	gap: 48px;
}

@media (min-width: 960px) {
	.contact__inner {
		grid-template-columns: 5fr 7fr;
		gap: 64px;
	}
}

.contact .section-title {
	color: var(--nacht);
}

.contact__subtext {
	max-width: 40ch;
	margin-bottom: 24px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__row {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-form__row label {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"],
.contact-form textarea,
.contact-form select {
	background: var(--papier);
	border: 2px solid var(--nacht);
	padding: 14px 16px;
	font-family: var(--font-body);
	font-size: 1rem;
	border-radius: 0;
	width: 100%;
}

.contact-form textarea {
	resize: vertical;
}

.contact-form__row--checkbox {
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
}

.contact-form__row--checkbox label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	text-transform: none;
	letter-spacing: normal;
	font-family: var(--font-body);
	font-size: 0.9375rem;
}

.contact-form__row--checkbox input {
	margin-top: 3px;
}

.contact-form__submit {
	align-self: flex-start;
}

.form-notice {
	padding: 16px 20px;
	margin-bottom: 20px;
	border: 2px solid var(--nacht);
	font-size: 0.9375rem;
}

.form-notice--error {
	background: var(--papier);
}

/* ---------- Footer ---------- */

.site-footer {
	background: var(--nacht);
	color: var(--papier);
	padding-top: clamp(56px, 8vw, 96px);
}

.site-footer__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--gutter);
	padding-bottom: clamp(40px, 6vw, 64px);
	display: grid;
	gap: 40px;
}

@media (min-width: 960px) {
	.site-footer__inner {
		grid-template-columns: 5fr 4fr 3fr;
		gap: 32px;
	}
}

.site-footer__logo {
	display: block;
	width: 120px;
	margin-bottom: 20px;
	color: var(--papier);
}

.site-footer__tagline {
	color: var(--staal);
	max-width: 32ch;
	margin-bottom: 20px;
}

.site-footer__social {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.site-footer__social a {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	color: var(--papier);
	border-bottom: 1px solid var(--staal);
}

.site-footer__list li + li {
	margin-top: 10px;
}

.site-footer__list a {
	text-decoration: none;
	color: var(--staal);
}

.site-footer__list a:hover {
	color: var(--papier);
}

.site-footer__meta {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--staal);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.site-footer__timeline {
	border-top: 1px solid var(--staal);
	margin-top: 0;
}

/* ---------- Page content (page.php/single.php/archive.php) ---------- */

.page-content__inner {
	max-width: 760px;
}

.page-content__header {
	margin-bottom: 32px;
}

.page-content__title {
	font-size: clamp(2rem, 4vw, 3rem);
}

.page-content__thumb {
	margin-bottom: 32px;
}

.entry-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 12px;
}

.entry-content a {
	color: var(--nacht);
	text-decoration-color: var(--limoen);
	text-decoration-thickness: 2px;
}

.entry-content blockquote {
	margin: 0;
	padding-left: 20px;
	border-left: 2px solid var(--limoen);
	font-style: normal;
	color: var(--staal-donker);
}

.entry-content ul li,
.entry-content ol li {
	position: relative;
	padding-left: 1.25em;
}

.entry-content ul li + li,
.entry-content ol li + li {
	margin-top: 8px;
}

.entry-content ul li::before {
	content: "\2013";
	position: absolute;
	left: 0;
	color: var(--limoen);
	font-weight: 700;
}

.entry-content ol {
	counter-reset: klipt-ol;
}

.entry-content ol li::before {
	counter-increment: klipt-ol;
	content: counter(klipt-ol) ".";
	position: absolute;
	left: 0;
	font-family: var(--font-mono);
	font-size: 0.85em;
	color: var(--limoen);
}

.table-scroll {
	overflow-x: auto;
}

.entry-content table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.entry-content th,
.entry-content td {
	border: 1px solid rgba(12, 13, 15, 0.15);
	padding: 10px 12px;
	text-align: left;
	vertical-align: top;
}

.entry-content th {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--staal-donker);
	background: rgba(12, 13, 15, 0.03);
}

.legal-missing {
	background: var(--limoen);
	color: var(--nacht);
	padding: 2px 6px;
	font-family: var(--font-mono);
	font-size: 0.8em;
	font-weight: 500;
}

.archive-list__item {
	padding-block: 28px;
	border-bottom: 1px solid rgba(12, 13, 15, 0.12);
}

.archive-list__title {
	font-size: 1.5rem;
	margin-block: 8px;
}

.archive-list__title a {
	text-decoration: none;
}

.archive-list__excerpt {
	color: var(--staal-donker);
	max-width: 60ch;
}

/* ---------- 404 ---------- */

.error-404__inner {
	max-width: 640px;
	text-align: left;
}

.error-404__title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	margin-block: 16px;
}

.error-404__text {
	color: var(--staal);
	margin-bottom: 24px;
}

.error-404__search {
	margin-top: 40px;
}

/* ---------- Search form ---------- */

.search-form {
	display: flex;
	gap: 12px;
	max-width: 420px;
}

.search-form__input {
	flex: 1;
	background: transparent;
	border: 2px solid currentColor;
	padding: 12px 16px;
	color: inherit;
}

/* ---------- Comments (single.php) ---------- */

.page-content__comments {
	margin-top: 56px;
	border-top: 1px solid rgba(12, 13, 15, 0.12);
	padding-top: 32px;
}

/* ---------- Scroll reveal ---------- */

[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

[data-reveal].is-revealed {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}
