/**
 * Pixapop Peaches – Luxe boutique-niveau CSS
 * Dramatische typografie, ruime whitespace, cinematische hero, glaskaarten, staggered reveals.
 */

:root {
	--peach-brand: #e69577;
	--peach-900: #9a4f3a;
	--peach-700: #c86f52;
	--peach-500: #e5987a;
	--peach-400: #e69577;
	--peach-300: #edb8a0;
	--peach-200: #f2cbb8;
	--peach-100: #f7e0d4;
	--peach-50: #fdf6f2;
	--cream: #f8f1ea;
	--cream-dark: #efe4d9;
	--ink: #1a1a1a;
	--muted: #6b5f57;
	--white: #ffffff;
	--black: #0a0a0a;
	--radius-soft: 0.65rem;
	--radius-pill: 50rem;
	--font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
	--space: clamp(1.25rem, 4vw, 2.5rem);
	--content-max: 1140px;
	--content-narrow: 720px;
	--header-h: 5rem;
	--section-gap: clamp(5rem, 12vw, 9rem);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body.peaches-body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--ink);
	background: var(--peach-50);
	font-weight: 400;
	letter-spacing: 0.01em;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--peach-900); text-decoration: none; transition: color 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth); }
a:hover { color: var(--peach-700); }

/* ═══ Skip ═══ */
.peaches-skip { position: absolute; left: 0.5rem; top: -4rem; z-index: 1000; background: var(--black); color: var(--cream); padding: 0.5rem 0.75rem; border-radius: 0.2rem; font-size: 0.85rem; }
.peaches-skip:focus { top: 0.5rem; outline: 2px solid var(--peach-500); }

/* ═══ Layout ═══ */
.peaches-wrap { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--space); }
.peaches-wrap--narrow { max-width: var(--content-narrow); }
.peaches-main { display: block; }

.peaches-section {
	padding: var(--section-gap) 0;
	position: relative;
}

/* ═══ Header ═══ */
.peaches-header {
	position: absolute; top: 0; left: 0; right: 0; z-index: 100;
	background: linear-gradient(to bottom, rgba(253, 246, 242, 0.92), rgba(253, 246, 242, 0.6) 60%, transparent);
	backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.peaches-header--inner {
	position: sticky; top: 0;
	background: rgba(253, 246, 242, 0.97);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.peaches-header__inner {
	max-width: var(--content-max); margin: 0 auto;
	display: flex; align-items: center; justify-content: space-between;
	gap: 1rem; min-height: var(--header-h); padding: 0.75rem var(--space);
}
.peaches-header__logo { display: flex; align-items: center; text-decoration: none; }
.peaches-header__wordmark {
	font-family: var(--font-serif); font-size: clamp(1.35rem, 2.2vw, 1.65rem); font-weight: 400; font-style: italic;
	color: var(--ink); letter-spacing: 0.02em; line-height: 1;
	transition: color 0.3s var(--ease-smooth);
}
.peaches-header__logo:hover .peaches-header__wordmark { color: var(--peach-brand); }
.peaches-header__logo-img { height: clamp(2rem, 3.8vw, 2.6rem); width: auto; max-width: 180px; object-fit: contain; }
.peaches-header__nav { display: flex; align-items: center; }
.peaches-header__actions { display: flex; align-items: center; gap: 0.75rem 1rem; flex-wrap: wrap; }
.peaches-header__phone { display: none; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; color: var(--muted); white-space: nowrap; }
.peaches-header__phone:hover { color: var(--peach-brand); }
@media (min-width: 900px) { .peaches-header__phone { display: inline-flex; } }
.peaches-icon { flex-shrink: 0; opacity: 0.6; }

.peaches-menu, .peaches-header__nav .peaches-menu { display: flex; list-style: none; margin: 0; padding: 0; gap: clamp(0.5rem, 1.4vw, 1.25rem); align-items: center; }
.peaches-header__nav .peaches-menu { flex-direction: row; }
.peaches-header__nav .peaches-menu a { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); padding: 0.4rem 0.2rem; transition: color 0.3s var(--ease-smooth); }
.peaches-header__nav .peaches-menu a:hover, .peaches-header__nav .peaches-menu .current-menu-item > a { color: var(--peach-brand); }

/* Burger */
.peaches-burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 2.5rem; height: 2.5rem; padding: 0; margin: 0 0 0 0.25rem; background: transparent; border: 0; cursor: pointer; z-index: 200; }
.peaches-burger span { display: block; width: 1.4rem; height: 1.5px; background: var(--ink); border-radius: 1px; transition: transform 0.35s var(--ease-out), opacity 0.25s ease; }
body.peaches-nav-open .peaches-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.peaches-nav-open .peaches-burger span:nth-child(2) { opacity: 0; }
body.peaches-nav-open .peaches-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 900px) {
	.peaches-burger { display: none; }
	.peaches-header__nav { flex: 1 1 auto; justify-content: center; margin: 0 2rem; }
	.peaches-header__inner { flex-wrap: nowrap; }
}
@media (max-width: 899.98px) {
	.peaches-header__nav { display: block; }
	#peaches-nav, .peaches-header__nav[data-peaches-nav] {
		position: fixed; inset: 0;
		background: rgba(253, 246, 242, 0.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
		padding: 6rem var(--space) 2rem;
		visibility: hidden; opacity: 0; transform: translateY(-10px);
		transition: opacity 0.35s var(--ease-out), visibility 0.35s, transform 0.35s var(--ease-out);
	}
	body.peaches-nav-open #peaches-nav, body.peaches-nav-open .peaches-header__nav[data-peaches-nav] { visibility: visible; opacity: 1; transform: none; }
	#peaches-nav .peaches-menu, .peaches-header__nav .peaches-menu { flex-direction: column; gap: 0.4rem; align-items: center; }
	#peaches-nav .peaches-menu a, .peaches-header__nav .peaches-menu a { font-size: 1.1rem; letter-spacing: 0.14em; padding: 0.7rem 0.5rem; }
}
body.peaches-nav-open { overflow: hidden; }

/* ═══ Buttons ═══ */
.peaches-btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 0.85rem 1.6rem;
	font-family: var(--font-sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
	border: 1px solid transparent; border-radius: 0; cursor: pointer;
	transition: all 0.35s var(--ease-out);
}
.peaches-btn--lg { padding: 1.05rem 2.2rem; font-size: 0.72rem; }
.peaches-btn--primary, a.peaches-btn--primary, button.peaches-btn--primary { background: var(--black); color: var(--cream); border-color: var(--black); }
.peaches-btn--primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18); }
.peaches-btn--book, a.peaches-btn--book, button.peaches-btn--book {
	background: var(--peach-brand); color: var(--white); border-color: var(--peach-brand);
}
.peaches-btn--book:hover, a.peaches-btn--book:hover {
	background: var(--peach-700); border-color: var(--peach-700); color: var(--white);
	transform: translateY(-2px); box-shadow: 0 12px 36px rgba(230, 149, 119, 0.3);
}
.peaches-btn--ghost { background: transparent; color: var(--ink); border-color: rgba(26, 26, 26, 0.3); }
.peaches-btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-2px); }

/* ═══ HERO – pure typografie ═══ */
.peaches-hero {
	position: relative;
	min-height: 100vh; min-height: 100svh;
	display: flex; flex-direction: column; justify-content: center;
	overflow: hidden; background: var(--peach-200);
}
.peaches-hero__bg {
	position: absolute;
	top: -12%; left: 0; right: 0;
	height: 124%;
	z-index: 0;
}
.peaches-hero__bg img {
	width: 100%; height: 100%;
	object-fit: cover; object-position: center 62%;
	will-change: transform;
}
.peaches-hero__overlay {
	position: absolute; inset: 0; z-index: 1;
	background:
		linear-gradient(100deg, rgba(253, 246, 242, 0.97) 0%, rgba(253, 246, 242, 0.85) 28%, rgba(253, 246, 242, 0.4) 58%, rgba(253, 246, 242, 0.05) 85%),
		linear-gradient(180deg, rgba(248, 241, 234, 0.3) 0%, rgba(26, 26, 26, 0.08) 100%);
}
.peaches-hero__flower {
	position: absolute; z-index: 1;
	right: clamp(-7rem, -5vw, 2rem); bottom: clamp(-4rem, -2vw, 2rem);
	width: min(48vw, 34rem); height: auto;
	opacity: 0.13; filter: saturate(0.85) sepia(0.08);
	pointer-events: none;
}
.peaches-hero__content {
	position: relative; z-index: 2;
	max-width: var(--content-max); margin: 0 auto; width: 100%;
	padding: calc(var(--header-h) + 3.5rem) var(--space) 5rem;
}
.peaches-hero__eyebrow {
	display: inline-flex; align-items: center; gap: 0.85rem;
	font-size: 0.78rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
	color: var(--peach-900);
	margin: 0 0 1.5rem 0;
}
.peaches-hero__rule {
	display: inline-block; width: 2.5rem; height: 1px; background: var(--peach-brand);
}
.peaches-hero__title {
	font-family: var(--font-serif);
	font-size: clamp(2.4rem, 6vw, 5rem);
	font-weight: 400; line-height: 1.04;
	letter-spacing: -0.015em;
	max-width: 14ch; margin: 0 0 2.25rem 0;
	color: var(--ink);
}
.peaches-hero__title em {
	font-style: italic; color: var(--peach-brand); font-weight: 400;
}
.peaches-hero__statements {
	display: flex; flex-direction: column; gap: 0.55rem;
	margin: 0 0 2.5rem 0;
	font-size: clamp(0.85rem, 1.1vw, 0.95rem); font-weight: 600;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--ink);
}
.peaches-hero__statements span { line-height: 1.5; }
.peaches-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.peaches-hero__scroll {
	position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2;
}
.peaches-hero__scroll span {
	display: block; width: 1px; height: 3rem;
	background: linear-gradient(to bottom, var(--peach-brand), transparent);
	animation: peaches-scroll-pulse 2.4s var(--ease-smooth) infinite;
}
@keyframes peaches-scroll-pulse {
	0%, 100% { opacity: 0; transform: scaleY(0.4); transform-origin: top; }
	40% { opacity: 1; transform: scaleY(1); }
	80% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

@keyframes peaches-float-hero {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-16px); }
}
@keyframes peaches-float-deco {
	0%, 100% { transform: scaleX(-1) rotate(10deg) translateY(0); }
	50%       { transform: scaleX(-1) rotate(10deg) translateY(-20px); }
}
@keyframes peaches-float-quote {
	0%, 100% { transform: translate(-50%, -50%); }
	50%       { transform: translate(-50%, calc(-50% - 10px)); }
}

.peaches-hero__flower {
	animation: peaches-float-hero 7s ease-in-out infinite;
}
.peaches-section__flower {
	animation: peaches-float-deco 9s ease-in-out infinite;
}
.peaches-quote__flower {
	animation: peaches-float-quote 11s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
	.peaches-hero__flower { animation: none; }
	.peaches-section__flower { animation: none; transform: scaleX(-1) rotate(10deg); }
	.peaches-quote__flower { animation: none; }
}


/* ═══ Shared page-style section title (o.a. filosofie startpagina) ═══ */
.peaches-h2.peaches-h2--philosophy {
	font-size: clamp(1.9rem, 3.5vw, 2.75rem);
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin: 0 auto 2.75rem;
	text-align: center;
	max-width: 36rem;
}
.peaches-h2.peaches-h2--philosophy em {
	font-style: italic;
	color: var(--peach-brand);
}

/* ═══ Eyebrow / headings ═══ */
.peaches-eyebrow {
	display: block;
	font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
	color: var(--peach-brand);
	margin: 0 0 1.1rem 0;
}
.peaches-h2 {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	font-weight: 400;
	line-height: 1.15; letter-spacing: -0.01em;
	margin: 0 0 1.5rem 0;
	color: var(--ink);
}
.peaches-h3 {
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 1.8vw, 1.5rem);
	font-weight: 400;
	margin: 0 0 0.75rem 0;
}
.peaches-lead {
	font-size: 1.0625rem; color: var(--muted);
	max-width: 48ch; margin: 0 0 2rem 0;
	line-height: 1.75;
}

/* ═══ Pillars (diensten) ═══ */
.peaches-section--services { background: var(--cream); }
.peaches-services-head { text-align: center; max-width: 36rem; margin: 0 auto 3.5rem; }
.peaches-services-head .peaches-h2 { margin-bottom: 0; }

.peaches-pillars { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 700px) { .peaches-pillars { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.peaches-pillar {
	padding: clamp(1.5rem, 3vw, 2.2rem);
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(230, 149, 119, 0.15);
	border-radius: var(--radius-soft);
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
	box-shadow: 0 20px 60px rgba(230, 149, 119, 0.06);
	transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
.peaches-pillar:hover {
	transform: translateY(-4px);
	border-color: rgba(230, 149, 119, 0.3);
	box-shadow: 0 28px 70px rgba(230, 149, 119, 0.12);
}
.peaches-pillar__num {
	display: block;
	font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em;
	color: var(--peach-brand); margin: 0 0 1rem 0;
}
.peaches-pillar__p { margin: 0; color: var(--muted); font-size: 0.9375rem; line-height: 1.7; }

/* ═══ Beeldstrip ═══ */
.peaches-strip {
	padding: var(--section-gap) 0;
	overflow: hidden;
}
.peaches-strip__track {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.75rem, 1.5vw, 1.25rem);
	max-width: 1400px; margin: 0 auto; padding: 0 var(--space);
}
.peaches-strip__img {
	border-radius: var(--radius-soft); overflow: hidden;
	aspect-ratio: 3/2;
	box-shadow: 0 18px 50px rgba(154, 79, 58, 0.08);
}
.peaches-strip__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); pointer-events: none; }
.peaches-strip__img:hover img { transform: scale(1.03); }
@media (max-width: 599.98px) {
	.peaches-strip__track { grid-template-columns: 1fr; max-width: 28rem; }
	.peaches-strip__img:nth-child(n+3) { display: none; }
}

/* ═══ Philosophy (display statement) ═══ */
.peaches-section--philosophy {
	position: relative; background: var(--white);
	padding-block: clamp(5rem, 10vw, 8rem);
	overflow: hidden;
}
.peaches-section__flower {
	position: absolute;
	right: clamp(-6rem, -4vw, -2rem);
	bottom: clamp(-5rem, -3vw, -1rem);
	width: min(38vw, 24rem);
	height: auto;
	opacity: 0.7;
	pointer-events: none;
	filter: saturate(0.85);
	z-index: 0;
}
.peaches-section--philosophy .peaches-wrap { position: relative; z-index: 1; }
.peaches-section--philosophy .peaches-eyebrow {
	display: block; text-align: center; margin-bottom: 2rem;
}
.peaches-section--philosophy .peaches-lead--lg {
	max-width: 36rem;
	margin-top: 0.5rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: #4a3f3a;
}
.peaches-lead--lg {
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	line-height: 1.75;
	color: var(--muted);
	max-width: 48ch;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
}

/* ═══ Stats (sociale proof) ═══ */
.peaches-stats {
	background: var(--cream);
	padding-block: clamp(4rem, 7vw, 6rem);
	border-block: 1px solid rgba(230, 149, 119, 0.12);
}
.peaches-stats__grid {
	display: grid; grid-template-columns: 1fr; gap: 3rem;
	max-width: 60rem; margin: 0 auto; text-align: center;
}
@media (min-width: 700px) { .peaches-stats__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.peaches-stat { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.peaches-stat__num {
	font-family: var(--font-serif);
	font-size: clamp(3rem, 6vw, 4.8rem);
	font-weight: 400; line-height: 1; color: var(--peach-brand);
	letter-spacing: -0.02em;
}
.peaches-stat__plus, .peaches-stat__pct {
	font-size: 0.6em; vertical-align: super; opacity: 0.7; margin-left: 0.05em;
}
.peaches-stat__label {
	font-size: 0.78rem; line-height: 1.5; color: var(--muted);
	max-width: 18ch; letter-spacing: 0.02em;
}

/* ═══ Split (Dounia) ═══ */
.peaches-section--dounia { background: var(--peach-50); }
.peaches-split { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .peaches-split { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); } }

.peaches-split__visual { position: relative; }
.peaches-frame {
	border-radius: var(--radius-soft); overflow: hidden;
	box-shadow: 0 30px 80px rgba(154, 79, 58, 0.12);
}
.peaches-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.peaches-split__accent {
	display: none;
}
@media (min-width: 900px) {
	.peaches-split__accent {
		display: block; position: absolute;
		width: 42%; bottom: -8%; right: -5%;
		border-radius: var(--radius-soft); overflow: hidden;
		box-shadow: 0 20px 50px rgba(154, 79, 58, 0.16);
	}
	.peaches-split__accent img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 62%; }
}
.peaches-split__values {
	display: flex; flex-wrap: wrap; gap: 0.6rem 2rem;
	margin: 0 0 2rem 0;
}
.peaches-value {
	display: flex; align-items: center; gap: 0.6rem;
}
.peaches-value__line {
	display: block; width: 1.6rem; height: 1px;
	background: var(--peach-brand);
}
.peaches-value__label {
	font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--peach-brand);
}

/* ═══ Quote ═══ */
.peaches-section--quote { background: var(--cream); }
.peaches-quote {
	position: relative; text-align: center;
	max-width: 52rem; margin: 0 auto;
	padding: clamp(3rem, 7vw, 5rem) var(--space);
}
.peaches-quote__flower {
	position: absolute;
	left: 50%; top: 50%; transform: translate(-50%, -50%);
	width: min(36vw, 20rem); height: auto;
	opacity: 0.06; pointer-events: none;
	filter: sepia(0.12) saturate(0.8);
}
.peaches-quote__rating {
	display: flex; gap: 0.25rem; justify-content: center;
	margin: 0 0 1.75rem 0;
	color: var(--peach-brand); font-size: 1.05rem;
	letter-spacing: 0.1em;
}
.peaches-quote p {
	font-family: var(--font-serif);
	font-size: clamp(1.5rem, 2.8vw, 2.2rem);
	font-style: italic; font-weight: 400;
	line-height: 1.4;
	margin: 0 0 1.75rem 0;
	color: var(--ink);
}
.peaches-quote footer {
	font-size: 0.72rem; font-weight: 600;
	letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--peach-brand);
}

/* ═══ CTA bar ═══ */
.peaches-cta-bar {
	background: var(--peach-brand); color: var(--white);
	padding: clamp(4rem, 10vw, 7rem) var(--space);
	text-align: center;
}
.peaches-cta-bar h2 {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 400; color: var(--white);
	margin: 0 0 1.25rem 0;
}
.peaches-cta-bar p { margin: 0 0 2rem 0; opacity: 0.9; font-size: 1rem; max-width: 36ch; margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.9); }
.peaches-cta-bar .peaches-eyebrow { color: rgba(255,255,255,0.7); }
.peaches-cta-bar .peaches-btn--primary, .peaches-cta-bar a.peaches-btn--primary, .peaches-cta-bar .peaches-btn--book, .peaches-cta-bar a.peaches-btn--book { background: var(--white); color: var(--peach-900); border-color: var(--white); }
.peaches-cta-bar .peaches-btn--primary:hover, .peaches-cta-bar a.peaches-btn--primary:hover, .peaches-cta-bar .peaches-btn--book:hover, .peaches-cta-bar a.peaches-btn--book:hover { background: var(--cream); box-shadow: 0 14px 40px rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

/* ═══ Instagram ═══ */
.peaches-ig { text-align: center; }
.peaches-ig__link { font-size: 0.85rem; color: var(--peach-brand); display: inline-block; margin-bottom: 0.5rem; }
.peaches-ig__link:hover { color: var(--peach-700); }

.peaches-gallery {
	display: grid; grid-template-columns: repeat(2, 1fr);
	gap: clamp(0.5rem, 1vw, 1rem); margin-top: 2.5rem;
	max-width: 1200px; margin-left: auto; margin-right: auto;
}
@media (min-width: 600px) { .peaches-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) {
	.peaches-gallery {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}
	.peaches-gallery a {
		flex: 0 1 calc((100% - 5rem) / 6);
		max-width: 11.75rem;
	}
}
.peaches-gallery a {
	display: block; border-radius: var(--radius-soft); overflow: hidden;
	aspect-ratio: 1;
	box-shadow: 0 12px 36px rgba(154, 79, 58, 0.06);
	transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.peaches-gallery a:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(154, 79, 58, 0.12); }
.peaches-gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.peaches-gallery a:hover img { transform: scale(1.05); }

/* ═══ Footer ═══ */
.peaches-footer {
	background: var(--cream); color: var(--ink);
	padding: clamp(3rem, 7vw, 5rem) var(--space) 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.peaches-footer__inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 800px) {
	.peaches-footer__inner {
		grid-template-columns: 1.5fr 1fr 1.1fr;
		align-items: start;
		gap: clamp(2rem, 5vw, 4rem);
	}
	.peaches-footer__inner > div:last-child { justify-self: end; text-align: left; min-width: 14rem; }
}
.peaches-footer__brand-col { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.peaches-footer__brand {
	display: inline-block; line-height: 0;
	border-radius: 0.5rem; overflow: hidden;
	max-width: min(20rem, 100%);
	transition: transform 0.4s var(--ease-smooth);
}
.peaches-footer__brand:hover { transform: translateY(-2px); }
.peaches-footer__logo {
	width: clamp(13rem, 28vw, 20rem);
	max-width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
	object-position: center;
	display: block;
}
.peaches-footer h3, .peaches-footer__h { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; margin: 0 0 0.75rem 0; color: var(--peach-brand); }
.peaches-footer__text, .peaches-footer__line, .peaches-footer p, .peaches-footer a, .peaches-footer__tagline { font-size: 0.9375rem; line-height: 1.7; color: var(--muted); }
.peaches-footer a:hover { color: var(--peach-brand); }
/* CTA: .peaches-footer a { color: muted } treft ook de boek-knop; expliciet wit op peach */
.peaches-footer a.peaches-btn--book,
.peaches-footer p.peaches-footer__line a.peaches-btn--book {
	color: var(--white);
}
.peaches-footer a.peaches-btn--book:hover,
.peaches-footer a.peaches-btn--book:focus,
.peaches-footer p.peaches-footer__line a.peaches-btn--book:hover,
.peaches-footer p.peaches-footer__line a.peaches-btn--book:focus {
	color: var(--white);
	background: var(--peach-700);
	border-color: var(--peach-700);
}
.peaches-footer__socials { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.peaches-footer__socials a { color: var(--muted); transition: color 0.3s var(--ease-smooth); }
.peaches-footer__socials a:hover { color: var(--peach-brand); }
.peaches-footer__bottom { margin-top: 3rem; padding: 1.25rem 0 2rem; text-align: center; border-top: 1px solid rgba(0, 0, 0, 0.05); font-size: 0.78rem; color: var(--muted); }
.peaches-footer__bottom a, .peaches-footer__credit { color: var(--muted); text-decoration: underline; text-underline-offset: 0.15em; text-decoration-thickness: 0.04em; }

/* ═══ Subpages ═══ */
.peaches-page-hero { padding: calc(var(--header-h) + 4rem) var(--space) 3.5rem; background: linear-gradient(180deg, var(--peach-200) 0%, var(--peach-50) 100%); }
.peaches-article { padding: clamp(2rem, 5vw, 3rem) 0 clamp(4rem, 8vw, 6rem); }
.peaches-article__content p, .peaches-article__content li { color: var(--muted); line-height: 1.75; }
.peaches-article__content a:not(.peaches-btn) { color: var(--peach-900); text-decoration: underline; text-underline-offset: 0.12em; }
.peaches-article__content h2, .peaches-article__content h3, .peaches-article__content h4 { color: var(--ink); font-family: var(--font-serif); font-weight: 400; margin-top: 2rem; }
.peaches-page-featured .peaches-page-featured-img { width: 100%; height: auto; display: block; }

/* Contact */
.peaches-contact-grid { display: grid; gap: 2.5rem 3.5rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .peaches-contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; } }
.peaches-form { display: grid; gap: 1.25rem; }
.peaches-form label { display: block; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--peach-brand); margin-bottom: 0.3rem; }
.peaches-form input, .peaches-form textarea { width: 100%; padding: 0.85rem 1.1rem; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 0.25rem; font-family: inherit; font-size: 0.95rem; background: var(--white); transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.peaches-form input:focus, .peaches-form textarea:focus { outline: none; border-color: var(--peach-brand); box-shadow: 0 0 0 3px rgba(230, 149, 119, 0.18); }
.peaches-form textarea { min-height: 10rem; resize: vertical; }

/* Screen reader */
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; width: 1px; overflow: hidden; position: absolute; word-wrap: normal !important; }
.screen-reader-text:focus { clip: auto; clip-path: none; height: auto; width: auto; z-index: 1001; }

/* Pager */
.peaches-pager { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1rem; }
.peaches-pager a, .peaches-pager span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.peaches-pager .current, .peaches-pager a:hover { color: var(--peach-brand); }

/* ═══ Animations ═══ */
.peaches-anim {
	opacity: 0; transform: translateY(18px);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.peaches-anim.is-in { opacity: 1; transform: none; }

.peaches-reveal {
	opacity: 0; transform: translateY(22px);
	transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.peaches-reveal.is-in { opacity: 1; transform: none; }

/* Directional reveal variants */
.peaches-eyebrow.peaches-reveal  { transform: translateX(-20px); }
.peaches-eyebrow.peaches-reveal.is-in { transform: none; }

.peaches-h2.peaches-reveal { transform: translateY(36px); transition-duration: 0.85s; }
.peaches-h2.peaches-reveal.is-in { transform: none; }

.peaches-split__visual.peaches-reveal {
	transform: scale(0.96) translateY(20px);
	transition-duration: 0.9s;
}
.peaches-split__visual.peaches-reveal.is-in { transform: scale(1) translateY(0); }

.peaches-strip__img.peaches-reveal {
	transform: scale(0.95);
	transition-duration: 0.85s;
}
.peaches-strip__img.peaches-reveal.is-in { transform: scale(1); }

/* Word-reveal for quote */
.peaches-word {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	line-height: inherit;
}
.peaches-word > span {
	display: inline-block;
	transform: translateY(110%);
	opacity: 0;
	transition: transform 0.55s var(--ease-out), opacity 0.55s var(--ease-out);
}
.peaches-word > span.is-in {
	transform: translateY(0);
	opacity: 1;
}

/* ═══ Lightbox ═══ */
.peaches-lb {
	position: fixed; inset: 0; z-index: 9999;
	background: rgba(8, 6, 5, 0.93);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	display: flex; align-items: center; justify-content: center;
	opacity: 0; visibility: hidden;
	transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.peaches-lb.is-open { opacity: 1; visibility: visible; }

.peaches-lb__stage {
	position: relative;
	max-width: min(90vw, 1080px);
	max-height: 88vh;
	transform: scale(0.93) translateY(10px);
	transition: transform 0.4s var(--ease-out);
}
.peaches-lb.is-open .peaches-lb__stage { transform: scale(1) translateY(0); }

.peaches-lb__img {
	display: block;
	max-width: 100%;
	max-height: 88vh;
	width: auto; height: auto;
	object-fit: contain;
	border-radius: var(--radius-soft);
	box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6);
	transition: opacity 0.25s ease;
}
.peaches-lb__stage.is-loading .peaches-lb__img { opacity: 0; }

.peaches-lb__btn {
	position: fixed;
	width: 2.75rem; height: 2.75rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer; color: var(--white);
	transition: background 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
	z-index: 10001; padding: 0;
}
.peaches-lb__btn:hover { background: rgba(255, 255, 255, 0.18); transform: scale(1.06); }
.peaches-lb__btn:focus-visible { outline: 2px solid var(--peach-brand); outline-offset: 3px; }

.peaches-lb__close { top: 1.25rem; right: 1.25rem; }
.peaches-lb__prev  { top: 50%; left: 1.25rem;  transform: translateY(-50%); }
.peaches-lb__next  { top: 50%; right: 1.25rem; transform: translateY(-50%); }
.peaches-lb__prev:hover { transform: translateY(-50%) scale(1.06); }
.peaches-lb__next:hover { transform: translateY(-50%) scale(1.06); }
.peaches-lb__btn.is-hidden { opacity: 0; pointer-events: none; }

[data-lb] { cursor: zoom-in; }

/* WP align */
.peaches-article__content .alignwide { max-width: 100%; }
.peaches-article__content .alignfull { margin-left: calc(var(--space) * -1); margin-right: calc(var(--space) * -1); }
