/**
 * Alleenpuur — main stylesheet
 *
 * @version 1.0.0
 */

:root {
	/* palette */
	--ap-cream: #fff9eb;
	--ap-cream-deep: #f5edd6;
	--ap-card: #fefae0;
	--ap-ink: #1a1816;
	--ap-ink-soft: #3d3a36;
	--ap-ink-mute: #6e6a63;
	--ap-tomato: #e63946;
	--ap-cherry: #a3142a;
	--ap-mustard: #d4a017;
	--ap-yellow: #ffd60a;
	--ap-green: #2d4a2b;
	--ap-green-soft: #5a7a4a;
	--ap-peach: #f5b27a;
	--ap-line: #e0d4b8;

	/* fonts */
	--ap-display: 'Sigmar', cursive;
	--ap-body: 'DM Sans', sans-serif;
	--ap-italic: 'Newsreader', serif;

	/* layout */
	--ap-container: 1340px;
	--ap-radius: 10px;
}

/* ───── BASE ───── */
body {
	font-family: var(--ap-body);
	background: var(--ap-cream);
	color: var(--ap-ink);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

.ap-accent { color: var(--ap-tomato); }

/* ───── TOPBAR ───── */
.ap-topbar {
	background: var(--ap-ink);
	color: var(--ap-cream);
	font-size: 12px;
	font-weight: 500;
}
.ap-topbar-inner {
	max-width: var(--ap-container);
	margin: 0 auto;
	padding: 9px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.ap-topbar-left {
	font-family: var(--ap-italic);
	font-style: italic;
	font-size: 13px;
	color: rgba(255, 249, 235, .75);
}
.ap-topbar-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 18px;
}
.ap-topbar-list a {
	color: rgba(255, 249, 235, .85);
	transition: color .2s;
}
.ap-topbar-list a:hover { color: var(--ap-yellow); }

/* ───── HEADER ───── */
.ap-header {
	background: var(--ap-cream);
	border-bottom: 2px solid var(--ap-ink);
	position: sticky;
	top: 0;
	z-index: 50;
}
.ap-header-inner {
	max-width: var(--ap-container);
	margin: 0 auto;
	padding: 18px 40px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 48px;
	align-items: center;
}
.ap-logo { display: inline-flex; align-items: center; }
.ap-logo-text {
	font-family: var(--ap-display);
	font-size: 32px;
	color: var(--ap-ink);
	letter-spacing: -.01em;
	line-height: .95;
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
}
.ap-logo-nl { color: var(--ap-tomato); font-size: 24px; }
.ap-logo-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--ap-tomato);
	display: inline-block;
	margin-left: 4px;
	align-self: center;
}
.ap-nav {
	display: flex;
	justify-content: center;
}
.ap-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 28px;
	align-items: center;
}
.ap-nav-list a {
	font-family: var(--ap-body);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ap-ink);
	transition: color .2s;
}
.ap-nav-list a:hover { color: var(--ap-tomato); }
.ap-header-right { display: flex; align-items: center; gap: 14px; }
.ap-nav-cta {
	background: var(--ap-tomato);
	color: var(--ap-cream);
	padding: 9px 18px;
	border-radius: 99px;
	font-size: 13px;
	font-weight: 600;
	transition: background .2s;
}
.ap-nav-cta:hover { background: var(--ap-cherry); color: var(--ap-cream); }
.ap-search-toggle, .ap-menu-toggle {
	background: transparent;
	border: 2px solid var(--ap-ink);
	color: var(--ap-ink);
	width: 38px;
	height: 38px;
	border-radius: 99px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.ap-search-toggle:hover, .ap-menu-toggle:hover { background: var(--ap-ink); color: var(--ap-cream); }
.ap-menu-toggle { display: none; flex-direction: column; gap: 4px; }
.ap-menu-toggle span {
	width: 18px;
	height: 2.5px;
	background: currentColor;
	border-radius: 2px;
}
.ap-search-panel {
	background: var(--ap-cream);
	border-bottom: 2px solid var(--ap-ink);
}
.ap-search-panel-inner {
	max-width: var(--ap-container);
	margin: 0 auto;
	padding: 22px 40px;
}
.ap-mobile-menu {
	background: var(--ap-cream);
	border-bottom: 2px solid var(--ap-ink);
	padding: 18px 40px;
}
.ap-mobile-menu .ap-mobile-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.ap-mobile-menu a { font-size: 17px; font-weight: 600; color: var(--ap-ink); }

/* ───── SEARCH FORM ───── */
.ap-searchform {
	display: flex;
	gap: 8px;
	max-width: 540px;
}
.ap-searchform input {
	flex: 1;
	padding: 12px 16px;
	border: 2px solid var(--ap-ink);
	border-radius: 6px;
	background: var(--ap-card);
	font: inherit;
	font-size: 15px;
	color: var(--ap-ink);
}
.ap-searchform input:focus { outline: none; border-color: var(--ap-tomato); }
.ap-searchform button {
	padding: 12px 18px;
	background: var(--ap-tomato);
	color: var(--ap-cream);
	border: 2px solid var(--ap-ink);
	border-radius: 6px;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
}
.ap-searchform button:hover { background: var(--ap-cherry); }

/* ───── MAIN ───── */
.ap-main {
	display: block;
}

/* ───── HERO ───── */
.ap-hero {
	max-width: var(--ap-container);
	margin: 0 auto;
	padding: 60px 40px 40px;
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 48px;
	align-items: start;
}
.ap-hero-eb {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ap-cherry);
	margin-bottom: 24px;
}
.ap-hero-eb::before {
	content: "";
	width: 24px;
	height: 2px;
	background: var(--ap-cherry);
}
.ap-hero-title {
	font-family: var(--ap-display);
	font-weight: 400;
	font-size: clamp(48px, 8vw, 108px);
	line-height: .88;
	letter-spacing: -.018em;
	margin: 0 0 28px;
	color: var(--ap-ink);
}
.ap-hero-sub {
	font-size: 18.5px;
	line-height: 1.5;
	color: var(--ap-ink-soft);
	max-width: 620px;
	margin: 0 0 32px;
}
.ap-hero-meta {
	display: flex;
	gap: 32px;
	align-items: center;
	font-size: 13px;
	color: var(--ap-ink-mute);
	flex-wrap: wrap;
}
.ap-hero-stat { display: flex; align-items: baseline; gap: 10px; }
.ap-hero-stat-num {
	font-family: var(--ap-display);
	font-size: 32px;
	color: var(--ap-green);
	line-height: 1;
}
.ap-hero-stat-label { max-width: 130px; line-height: 1.25; }

.ap-hero-right {
	padding-top: 32px;
}
.ap-hero-card {
	display: block;
	background: var(--ap-cherry);
	color: var(--ap-cream);
	border-radius: 12px;
	padding: 28px;
	position: relative;
	overflow: hidden;
	border: 2px solid var(--ap-ink);
	box-shadow: 8px 8px 0 var(--ap-ink);
	transform: rotate(.5deg);
	transition: transform .25s, box-shadow .25s;
}
.ap-hero-card:hover {
	transform: rotate(.5deg) translate(-2px, -2px);
	box-shadow: 10px 10px 0 var(--ap-ink);
}
.ap-hero-card::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: var(--ap-yellow);
	z-index: 0;
}
.ap-hero-card-tag {
	position: absolute;
	top: 18px;
	left: -8px;
	background: var(--ap-yellow);
	color: var(--ap-ink);
	padding: 7px 14px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	z-index: 2;
	transform: rotate(-3deg);
	border: 2px solid var(--ap-ink);
}
.ap-hero-card-content { position: relative; z-index: 1; margin-top: 32px; }
.ap-hero-card-eb {
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255, 249, 235, .7);
	margin-bottom: 10px;
}
.ap-hero-card-title {
	font-family: var(--ap-display);
	font-weight: 400;
	font-size: 36px;
	line-height: .95;
	letter-spacing: -.015em;
	margin: 0 0 14px;
}
.ap-hero-card-deck {
	font-size: 14.5px;
	line-height: 1.45;
	color: rgba(255, 249, 235, .88);
	margin: 0 0 22px;
}
.ap-hero-card-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--ap-yellow);
	color: var(--ap-ink);
	padding: 11px 18px;
	border-radius: 99px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .02em;
	border: 2px solid var(--ap-ink);
}

/* ───── STRIP BANNER ───── */
.ap-strip {
	background: var(--ap-green);
	color: var(--ap-cream);
	padding: 14px 0;
	margin: 20px 0 0;
	border-top: 2px solid var(--ap-ink);
	border-bottom: 2px solid var(--ap-ink);
	overflow: hidden;
}
.ap-strip-inner {
	display: flex;
	gap: 40px;
	white-space: nowrap;
	font-family: var(--ap-display);
	font-size: 24px;
	color: var(--ap-cream);
	letter-spacing: .01em;
	animation: ap-marquee 30s linear infinite;
	will-change: transform;
}
@keyframes ap-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
.ap-strip-item .ap-accent { color: var(--ap-yellow); }
.ap-strip-sep {
	color: var(--ap-mustard);
	font-family: var(--ap-body);
	font-weight: 700;
	font-size: 18px;
}

/* ───── SECTION HEADS (shared) ───── */
.ap-sec-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 36px;
	gap: 32px;
	flex-wrap: wrap;
}
.ap-sec-title {
	font-family: var(--ap-display);
	font-weight: 400;
	font-size: clamp(36px, 5vw, 56px);
	line-height: 1;
	letter-spacing: -.015em;
	margin: 0;
}
.ap-sec-meta {
	font-size: 12.5px;
	color: var(--ap-ink-mute);
	display: flex;
	align-items: center;
	gap: 14px;
}
.ap-sec-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--ap-ink);
	border-bottom: 2px solid var(--ap-tomato);
	padding-bottom: 2px;
	transition: color .2s;
}
.ap-sec-link:hover { color: var(--ap-tomato); }

/* ───── RECENT GRID (shared card style) ───── */
.ap-recent, .ap-related-inner {
	max-width: var(--ap-container);
	margin: 0 auto;
	padding: 80px 40px 60px;
}
.ap-recent-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.ap-recent-card {
	display: flex;
	flex-direction: column;
	background: var(--ap-card);
	border: 2px solid var(--ap-ink);
	border-radius: var(--ap-radius);
	overflow: hidden;
	transition: transform .25s, box-shadow .25s;
}
.ap-recent-card:hover {
	transform: translateY(-3px);
	box-shadow: 6px 6px 0 var(--ap-ink);
}
.ap-recent-card-img {
	display: block;
	height: 200px;
	background: var(--ap-peach);
	overflow: hidden;
	position: relative;
}
.ap-recent-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ap-card-peach .ap-recent-card-img { background: linear-gradient(135deg, var(--ap-peach), var(--ap-mustard)); }
.ap-card-green .ap-recent-card-img { background: linear-gradient(135deg, var(--ap-green-soft), var(--ap-green)); }
.ap-card-tomato .ap-recent-card-img { background: linear-gradient(135deg, var(--ap-tomato), var(--ap-cherry)); }
.ap-recent-card-body {
	padding: 22px 24px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.ap-recent-card-cat {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ap-cherry);
	margin-bottom: 10px;
}
.ap-recent-card-title {
	font-family: var(--ap-display);
	font-weight: 400;
	font-size: 24px;
	line-height: 1.05;
	letter-spacing: -.015em;
	margin: 0 0 12px;
	color: var(--ap-ink);
}
.ap-recent-card-title a {
	color: inherit;
	transition: color .2s;
}
.ap-recent-card-title a:hover { color: var(--ap-tomato); }
.ap-recent-card-deck {
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--ap-ink-soft);
	margin: 0 0 14px;
	flex: 1;
}
.ap-recent-card-meta {
	font-size: 11px;
	color: var(--ap-ink-mute);
	display: flex;
	gap: 10px;
	align-items: center;
}
.ap-recent-card-dot {
	width: 3px;
	height: 3px;
	background: var(--ap-ink-mute);
	border-radius: 50%;
}

/* ───── CATEGORY BROWSER ───── */
.ap-browser {
	background: var(--ap-cream-deep);
	padding: 80px 0;
	border-top: 2px solid var(--ap-ink);
	border-bottom: 2px solid var(--ap-ink);
}
.ap-browser-inner {
	max-width: var(--ap-container);
	margin: 0 auto;
	padding: 0 40px;
}
.ap-browser-head {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 48px;
	margin-bottom: 40px;
	align-items: end;
}
.ap-browser-title {
	font-family: var(--ap-display);
	font-weight: 400;
	font-size: clamp(48px, 6vw, 80px);
	line-height: .88;
	letter-spacing: -.018em;
	margin: 0;
}
.ap-browser-intro {
	font-size: 16px;
	line-height: 1.55;
	color: var(--ap-ink-soft);
	margin: 0;
	max-width: 520px;
}
.ap-browser-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 200px;
	gap: 14px;
}
.ap-tile {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 2px solid var(--ap-ink);
	border-radius: var(--ap-radius);
	padding: 20px 22px;
	position: relative;
	overflow: hidden;
	transition: transform .25s, box-shadow .25s;
	color: var(--ap-ink);
}
.ap-tile:hover {
	transform: translateY(-3px);
	box-shadow: 6px 6px 0 var(--ap-ink);
	color: inherit;
}
.ap-tile-num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	opacity: .55;
}
.ap-tile-title {
	font-family: var(--ap-display);
	font-weight: 400;
	font-size: 36px;
	line-height: .92;
	letter-spacing: -.015em;
	margin: 0;
}
.ap-tile-meta {
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: .04em;
	opacity: .7;
}
.ap-tile-big {
	grid-column: span 2;
	grid-row: span 2;
	background: var(--ap-green);
	color: var(--ap-cream);
}
.ap-tile-big .ap-tile-title { font-size: 64px; }
.ap-tile-big .ap-accent { color: var(--ap-yellow); }
.ap-tile-big::before {
	content: "";
	position: absolute;
	bottom: -60px;
	right: -60px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: var(--ap-yellow);
	opacity: .18;
}
.ap-tile-tomato {
	background: var(--ap-tomato);
	color: var(--ap-cream);
}
.ap-tile-tomato .ap-accent { color: var(--ap-yellow); }
.ap-tile-mustard {
	background: var(--ap-mustard);
	color: var(--ap-ink);
}
.ap-tile-mustard .ap-accent { color: var(--ap-cherry); }
.ap-tile-wide {
	grid-column: span 2;
}
.ap-tile-cherry {
	background: var(--ap-cherry);
	color: var(--ap-cream);
}
.ap-tile-cherry .ap-tile-title { font-size: 46px; }
.ap-tile-cherry .ap-accent { color: var(--ap-yellow); }
.ap-tile-cream {
	background: var(--ap-cream);
	color: var(--ap-ink);
}
.ap-tile-cream .ap-accent { color: var(--ap-tomato); }
.ap-tile-peach {
	background: var(--ap-peach);
	color: var(--ap-ink);
}
.ap-tile-peach .ap-accent { color: var(--ap-cherry); }

/* ───── MANIFESTO ───── */
.ap-manifesto {
	max-width: var(--ap-container);
	margin: 0 auto;
	padding: 100px 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.ap-manifesto-eb {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--ap-cherry);
	margin-bottom: 20px;
}
.ap-manifesto-title {
	font-family: var(--ap-display);
	font-weight: 400;
	font-size: clamp(44px, 6vw, 72px);
	line-height: .92;
	letter-spacing: -.018em;
	margin: 0 0 28px;
}
.ap-manifesto-quote {
	font-family: var(--ap-italic);
	font-style: italic;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.4;
	color: var(--ap-ink-soft);
	border-left: 4px solid var(--ap-mustard);
	padding-left: 20px;
	margin: 0 0 22px;
}
.ap-manifesto-body {
	font-size: 16px;
	line-height: 1.6;
	color: var(--ap-ink-soft);
	margin: 0;
}
.ap-manifesto-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.ap-manifesto-card {
	background: var(--ap-card);
	border: 2px solid var(--ap-ink);
	border-radius: var(--ap-radius);
	padding: 24px 22px;
}
.ap-manifesto-card-num {
	font-family: var(--ap-display);
	font-size: 48px;
	line-height: 1;
	color: var(--ap-tomato);
	display: block;
	margin-bottom: 6px;
}
.ap-manifesto-card-title {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 8px;
	line-height: 1.2;
}
.ap-manifesto-card-body {
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--ap-ink-soft);
	margin: 0;
}
.ap-manifesto-card.tilt-l { transform: rotate(-2deg); }
.ap-manifesto-card.tilt-r { transform: rotate(2deg); }

/* ───── GIDSEN ───── */
.ap-gidsen {
	background: var(--ap-ink);
	color: var(--ap-cream);
	padding: 90px 0;
	position: relative;
	overflow: hidden;
}
.ap-gidsen::before {
	content: "";
	position: absolute;
	top: -100px;
	left: -100px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: var(--ap-tomato);
	opacity: .12;
}
.ap-gidsen-inner {
	max-width: var(--ap-container);
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}
.ap-gidsen-head {
	margin-bottom: 48px;
	max-width: 680px;
}
.ap-gidsen-eb {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--ap-yellow);
	margin-bottom: 18px;
}
.ap-gidsen-title {
	font-family: var(--ap-display);
	font-weight: 400;
	font-size: clamp(48px, 6vw, 76px);
	line-height: .92;
	letter-spacing: -.018em;
	margin: 0;
}
.ap-gidsen .ap-accent { color: var(--ap-mustard); }
.ap-gidsen-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.ap-gids-card {
	display: block;
	background: rgba(255, 249, 235, .05);
	border: 1.5px solid rgba(255, 249, 235, .18);
	border-radius: var(--ap-radius);
	padding: 28px 26px;
	transition: background .2s, transform .25s;
	color: var(--ap-cream);
}
.ap-gids-card:hover {
	background: rgba(255, 249, 235, .09);
	transform: translateY(-3px);
	color: var(--ap-cream);
}
.ap-gids-num {
	font-family: var(--ap-display);
	font-size: 64px;
	color: var(--ap-mustard);
	line-height: .9;
	margin-bottom: 14px;
}
.ap-gids-title {
	font-family: var(--ap-display);
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
	margin: 0 0 12px;
	letter-spacing: -.01em;
}
.ap-gids-title .ap-accent { color: var(--ap-yellow); }
.ap-gids-body {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 249, 235, .7);
	margin: 0 0 18px;
}
.ap-gids-link {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--ap-mustard);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap .2s, color .2s;
}
.ap-gids-card:hover .ap-gids-link {
	gap: 10px;
	color: var(--ap-yellow);
}

/* ───── NEWSLETTER ───── */
.ap-nl {
	background: var(--ap-mustard);
	padding: 80px 0;
	border-top: 2px solid var(--ap-ink);
	border-bottom: 2px solid var(--ap-ink);
	position: relative;
	overflow: hidden;
}
.ap-nl::before {
	content: "";
	position: absolute;
	top: -80px;
	right: 8%;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: var(--ap-tomato);
	opacity: .5;
}
.ap-nl::after {
	content: "";
	position: absolute;
	bottom: -100px;
	left: 5%;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: var(--ap-green);
	opacity: .4;
}
.ap-nl-inner {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.ap-nl-eb {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--ap-ink);
	margin-bottom: 14px;
}
.ap-nl-title {
	font-family: var(--ap-display);
	font-weight: 400;
	font-size: clamp(36px, 5vw, 54px);
	line-height: .92;
	letter-spacing: -.015em;
	margin: 0 0 18px;
	color: var(--ap-ink);
}
.ap-nl .ap-accent { color: var(--ap-cherry); }
.ap-nl-body {
	font-size: 15.5px;
	line-height: 1.5;
	color: var(--ap-ink);
	margin: 0;
}
.ap-nl-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ap-nl-form input {
	padding: 14px 18px;
	font: inherit;
	font-size: 14.5px;
	border: 2px solid var(--ap-ink);
	border-radius: 6px;
	background: var(--ap-cream);
	color: var(--ap-ink);
}
.ap-nl-form input:focus { outline: none; border-color: var(--ap-cherry); }
.ap-nl-form button {
	padding: 14px 18px;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	background: var(--ap-ink);
	color: var(--ap-cream);
	border: 2px solid var(--ap-ink);
	border-radius: 6px;
	transition: background .2s;
}
.ap-nl-form button:hover { background: var(--ap-cherry); border-color: var(--ap-cherry); }
.ap-nl-small {
	font-family: var(--ap-italic);
	font-style: italic;
	font-size: 12.5px;
	color: var(--ap-ink-soft);
	text-align: center;
	margin-top: 6px;
}

/* ───── SINGLE / ARCHIVE / PAGE ───── */
.ap-single-wrap {
	max-width: var(--ap-container);
	margin: 0 auto;
	padding: 60px 40px 40px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 64px;
	align-items: start;
}
.ap-single, .ap-page {
	max-width: 100%;
}
.ap-page {
	max-width: 760px;
	margin: 0 auto;
	padding: 60px 40px 40px;
}
.ap-single-head { margin-bottom: 32px; }
.ap-single-cat {
	display: inline-block;
	background: var(--ap-tomato);
	color: var(--ap-cream);
	padding: 6px 13px;
	border-radius: 99px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.ap-single-title {
	font-family: var(--ap-display);
	font-weight: 400;
	font-size: clamp(40px, 5vw, 64px);
	line-height: .95;
	letter-spacing: -.015em;
	margin: 0 0 20px;
	color: var(--ap-ink);
}
.ap-single-lead {
	font-family: var(--ap-italic);
	font-style: italic;
	font-size: 22px;
	line-height: 1.4;
	color: var(--ap-ink-soft);
	margin: 0 0 22px;
}
.ap-single-meta {
	display: flex;
	gap: 10px;
	align-items: center;
	font-size: 13px;
	color: var(--ap-ink-mute);
}
.ap-single-dot {
	width: 3px;
	height: 3px;
	background: var(--ap-ink-mute);
	border-radius: 50%;
}
.ap-single-feature-image {
	margin: 0 0 36px;
	border: 2px solid var(--ap-ink);
	border-radius: var(--ap-radius);
	overflow: hidden;
}
.ap-single-content {
	font-size: 17px;
	line-height: 1.65;
	color: var(--ap-ink-soft);
}
.ap-single-content p { margin: 0 0 1.2em; }
.ap-single-content h2 {
	font-family: var(--ap-display);
	font-size: 36px;
	font-weight: 400;
	line-height: 1.05;
	color: var(--ap-ink);
	margin: 2em 0 .7em;
	letter-spacing: -.01em;
}
.ap-single-content h3 {
	font-family: var(--ap-display);
	font-size: 26px;
	font-weight: 400;
	line-height: 1.1;
	color: var(--ap-ink);
	margin: 1.6em 0 .5em;
}
.ap-single-content a {
	color: var(--ap-tomato);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}
.ap-single-content blockquote {
	font-family: var(--ap-italic);
	font-style: italic;
	font-size: 22px;
	line-height: 1.4;
	color: var(--ap-ink);
	border-left: 4px solid var(--ap-tomato);
	padding-left: 22px;
	margin: 1.6em 0;
}
.ap-single-content ul, .ap-single-content ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.ap-single-content li { margin: 0 0 .5em; }
.ap-single-content code {
	background: var(--ap-cream-deep);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: .92em;
}
.ap-single-content img {
	border-radius: var(--ap-radius);
	margin: 1.6em 0;
}
.ap-single-foot {
	margin-top: 40px;
	padding-top: 28px;
	border-top: 1px solid var(--ap-line);
}
.ap-single-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.ap-single-tags a {
	display: inline-block;
	padding: 6px 13px;
	background: var(--ap-cream-deep);
	border-radius: 99px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--ap-ink-soft);
	transition: background .2s, color .2s;
}
.ap-single-tags a:hover {
	background: var(--ap-tomato);
	color: var(--ap-cream);
}

/* ───── SIDEBAR ───── */
.ap-sidebar {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding-top: 40px;
	position: sticky;
	top: 100px;
}
.ap-side-eb {
	font-size: 10.5px;
	font-weight: 700;
	color: var(--ap-cherry);
	letter-spacing: .14em;
	text-transform: lowercase;
	margin-bottom: 10px;
}
.ap-side-block {
	border-top: 1px solid var(--ap-line);
	padding-top: 24px;
}
.ap-side-author {
	background: linear-gradient(160deg, var(--ap-peach), var(--ap-card) 80%);
	border: 2px solid var(--ap-ink);
	border-radius: var(--ap-radius);
	padding: 24px 22px;
}
.ap-side-author-avatar {
	display: block;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--ap-ink);
	margin-bottom: 14px;
}
.ap-side-author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ap-side-author-name {
	font-family: var(--ap-display);
	font-size: 22px;
	color: var(--ap-ink);
	display: block;
	line-height: 1.1;
	margin-bottom: 4px;
}
.ap-side-author-name:hover { color: var(--ap-cherry); }
.ap-side-author-role {
	font-size: 11.5px;
	color: var(--ap-ink-soft);
	letter-spacing: .02em;
	margin-bottom: 10px;
}
.ap-side-author-bio {
	font-size: 13px;
	line-height: 1.5;
	color: var(--ap-ink-soft);
	margin: 0;
}
.ap-side-nl {
	background: var(--ap-mustard);
	border: 2px solid var(--ap-ink);
	border-radius: var(--ap-radius);
	padding: 22px 20px;
}
.ap-side-nl-eb {
	font-size: 10.5px;
	font-weight: 700;
	color: var(--ap-ink);
	letter-spacing: .14em;
	text-transform: lowercase;
	margin-bottom: 8px;
}
.ap-side-nl-title {
	font-family: var(--ap-display);
	font-size: 22px;
	font-weight: 400;
	color: var(--ap-ink);
	margin: 0 0 14px;
	line-height: 1.05;
}
.ap-side-nl-form { display: flex; flex-direction: column; gap: 8px; }
.ap-side-nl-form input {
	padding: 11px 13px;
	border: 2px solid var(--ap-ink);
	border-radius: 4px;
	background: var(--ap-cream);
	font: inherit;
	font-size: 13.5px;
	color: var(--ap-ink);
}
.ap-side-nl-form button {
	padding: 11px 14px;
	background: var(--ap-ink);
	color: var(--ap-cream);
	border: 2px solid var(--ap-ink);
	border-radius: 4px;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.ap-side-nl-form button:hover { background: var(--ap-cherry); border-color: var(--ap-cherry); }
.ap-side-nl-fallback {
	font-size: 13px;
	color: var(--ap-ink-soft);
	margin: 0;
}
.ap-side-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.ap-side-tags a {
	display: inline-block;
	padding: 5px 11px;
	background: var(--ap-cream-deep);
	border-radius: 99px;
	font-size: 12px;
	color: var(--ap-ink-soft);
}
.ap-side-tags a:hover { background: var(--ap-tomato); color: var(--ap-cream); }

/* ───── RELATED ───── */
.ap-related {
	background: var(--ap-cream-deep);
	border-top: 2px solid var(--ap-ink);
	border-bottom: 2px solid var(--ap-ink);
	padding: 0;
}

/* ───── ARCHIVE ───── */
.ap-archive {
	max-width: var(--ap-container);
	margin: 0 auto;
	padding: 60px 40px 80px;
}
.ap-archive-head {
	margin-bottom: 48px;
	max-width: 760px;
}
.ap-archive-eb {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--ap-cherry);
	margin-bottom: 12px;
}
.ap-archive-title {
	font-family: var(--ap-display);
	font-weight: 400;
	font-size: clamp(44px, 6vw, 72px);
	line-height: .95;
	letter-spacing: -.015em;
	margin: 0 0 18px;
}
.ap-archive-desc {
	font-size: 17px;
	line-height: 1.5;
	color: var(--ap-ink-soft);
	margin: 0;
}

/* Pagination */
.ap-pagination {
	margin-top: 60px;
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}
.ap-pagination a, .ap-pagination .current {
	padding: 10px 14px;
	font-size: 13.5px;
	font-weight: 600;
	border: 2px solid var(--ap-ink);
	border-radius: 6px;
	background: var(--ap-cream);
	color: var(--ap-ink);
	transition: background .2s;
}
.ap-pagination .current {
	background: var(--ap-tomato);
	color: var(--ap-cream);
}
.ap-pagination a:hover {
	background: var(--ap-ink);
	color: var(--ap-cream);
}
.ap-no-results {
	font-family: var(--ap-italic);
	font-style: italic;
	font-size: 22px;
	color: var(--ap-ink-mute);
	text-align: center;
	padding: 60px 0;
}

/* ───── 404 ───── */
.ap-404 {
	max-width: 640px;
	margin: 0 auto;
	padding: 80px 40px;
	text-align: center;
}
.ap-404-num {
	font-family: var(--ap-display);
	font-size: 180px;
	line-height: 1;
	color: var(--ap-tomato);
	margin-bottom: 20px;
}
.ap-404-title {
	font-family: var(--ap-display);
	font-size: 48px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -.015em;
	margin: 0 0 20px;
}
.ap-404-body {
	font-size: 17px;
	line-height: 1.55;
	color: var(--ap-ink-soft);
	margin: 0 0 32px;
}
.ap-404-home {
	display: inline-block;
	margin-top: 24px;
	font-weight: 600;
	color: var(--ap-tomato);
	border-bottom: 2px solid var(--ap-tomato);
	padding-bottom: 2px;
}

/* ───── COMMENTS ───── */
.ap-comments {
	max-width: 760px;
	margin: 60px auto 0;
	padding-top: 40px;
	border-top: 2px solid var(--ap-ink);
}
.ap-comments-title {
	font-family: var(--ap-display);
	font-weight: 400;
	font-size: 30px;
	margin: 0 0 24px;
}
.ap-comments-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px;
}

/* ───── FOOTER ───── */
.ap-footer {
	background: var(--ap-ink);
	color: var(--ap-cream);
	padding: 60px 0 30px;
}
.ap-footer-inner {
	max-width: var(--ap-container);
	margin: 0 auto;
	padding: 0 40px;
}
.ap-footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 249, 235, .15);
	margin-bottom: 24px;
}
.ap-footer-brand .ap-logo-text {
	color: var(--ap-cream);
}
.ap-footer-about {
	font-family: var(--ap-italic);
	font-style: italic;
	font-size: 15px;
	line-height: 1.45;
	color: rgba(255, 249, 235, .7);
	margin: 14px 0 0;
	max-width: 300px;
}
.ap-footer-col h4 {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ap-yellow);
	margin: 0 0 18px;
}
.ap-footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ap-footer-col a {
	font-size: 14px;
	color: rgba(255, 249, 235, .78);
	transition: color .2s;
}
.ap-footer-col a:hover { color: var(--ap-yellow); }
.ap-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: rgba(255, 249, 235, .5);
	gap: 16px;
	flex-wrap: wrap;
}
.ap-footer-bottom a { color: rgba(255, 249, 235, .6); }
.ap-footer-bottom a:hover { color: var(--ap-yellow); }

/* ───── RESPONSIVE ───── */
@media (max-width: 1100px) {
	.ap-hero { grid-template-columns: 1fr; gap: 32px; }
	.ap-hero-right { padding-top: 0; }
	.ap-browser-head { grid-template-columns: 1fr; gap: 18px; }
	.ap-browser-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
	.ap-tile-big { grid-column: span 2; grid-row: span 1; }
	.ap-tile-wide { grid-column: span 2; }
	.ap-manifesto { grid-template-columns: 1fr; gap: 40px; }
	.ap-gidsen-grid { grid-template-columns: 1fr; gap: 18px; }
	.ap-newsletter-inner, .ap-nl-inner { grid-template-columns: 1fr; gap: 24px; }
	.ap-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
	.ap-recent-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
	.ap-single-wrap { grid-template-columns: 1fr; gap: 48px; }
	.ap-sidebar { position: static; padding-top: 0; border-top: 2px solid var(--ap-ink); padding-top: 32px; }
}
@media (max-width: 720px) {
	.ap-topbar-left { display: none; }
	.ap-nav { display: none; }
	.ap-menu-toggle { display: flex; }
	.ap-header-inner { grid-template-columns: 1fr auto; padding: 14px 20px; }
	.ap-nav-cta { display: none; }
	.ap-hero { padding: 40px 20px 30px; }
	.ap-hero-title { font-size: 48px; }
	.ap-strip-inner { font-size: 18px; }
	.ap-recent, .ap-related-inner { padding: 60px 20px 40px; }
	.ap-recent-grid { grid-template-columns: 1fr; gap: 18px; }
	.ap-browser-inner { padding: 0 20px; }
	.ap-browser-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
	.ap-tile { min-height: 180px; }
	.ap-tile-big, .ap-tile-wide { grid-column: span 1; grid-row: span 1; }
	.ap-tile-big .ap-tile-title { font-size: 44px; }
	.ap-manifesto { padding: 60px 20px; }
	.ap-manifesto-cards { grid-template-columns: 1fr; }
	.ap-gidsen-inner { padding: 0 20px; }
	.ap-nl-inner { padding: 0 24px; }
	.ap-footer-inner { padding: 0 20px; }
	.ap-footer-top { grid-template-columns: 1fr; gap: 28px; }
	.ap-single-wrap, .ap-archive, .ap-page { padding-left: 20px; padding-right: 20px; }
	.ap-single-feature-image { margin-left: -20px; margin-right: -20px; border-radius: 0; border-left: none; border-right: none; }
	.ap-single-title { font-size: 36px; }
	.ap-single-content h2 { font-size: 28px; }
	.ap-404-num { font-size: 120px; }
}
