/* Studio Tanner, Kloosterveen. Art direction: redactioneel, rustig, warm.
   Tokens volgen het opgeslagen Novamira-design (DESIGN.md): Newsreader voor koppen, Hanken Grotesk voor tekst,
   scherpe hoeken, haarlijnen in plaats van kaarten, geen schaduwen, geen verlopen.
   Beweging alleen met transform en opacity. */

:root {
	--paper: #F3F1EC;
	--surface: #E9E5DC;
	--sky: #DCE6E6;
	--ink: #262421;
	--muted: #5C574F;
	--accent: #B27D34;
	--accent-deep: #8A5A17;
	--line: rgba(38, 36, 33, .18);

	--f-display: 'Newsreader', Georgia, 'Times New Roman', serif;
	--f-body: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

	--gut: clamp(20px, 4.4vw, 68px);
	--hdr: 72px;
	--max: 1440px;
	--ease: cubic-bezier(.2, .6, .2, 1);
	--photo: saturate(.88) contrast(1.02) sepia(.05);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--hdr) + 16px); }
body {
	margin: 0; background: var(--paper); color: var(--ink);
	font: 400 1.0625rem/1.65 var(--f-body);
	-webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
figure img { filter: var(--photo); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; text-align: inherit; }
ul, ol, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
p { margin: 0; }
b, strong { font-weight: 600; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-weight: 400; letter-spacing: -.02em; text-wrap: balance; font-optical-sizing: auto; }
em { font-style: italic; }
iframe { border: 0; }
[hidden] { display: none !important; }

:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 3px; }
.tt-skip {
	position: absolute; left: var(--gut); top: -80px; z-index: 300;
	background: var(--ink); color: var(--paper); padding: 12px 20px; font-weight: 500;
	transition: top .2s var(--ease);
}
.tt-skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; }

/* ---------- Type ---------- */
.label { font: 500 .75rem/1.4 var(--f-body); letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); }
.lead { font-size: clamp(1.125rem, .9vw + .95rem, 1.3125rem); line-height: 1.55; color: var(--muted); max-width: 34em; }
.h-xl { font-size: clamp(2.375rem, 2.2vw + 1.55rem, 3.625rem); line-height: 1.05; letter-spacing: -.024em; }
.h-l { font-size: clamp(1.875rem, 1.5vw + 1.35rem, 3rem); line-height: 1.08; letter-spacing: -.022em; }
.h-m { font-size: clamp(1.5rem, .9vw + 1.2rem, 2rem); line-height: 1.15; }
.prose > * + * { margin-top: 1.1em; }
.prose { max-width: 34em; }
.prose p { color: var(--muted); }
.nums { font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- Buttons and links ---------- */
.btn {
	position: relative; isolation: isolate; overflow: hidden;
	display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 30px;
	background: var(--ink); color: var(--paper); font: 500 .9375rem/1 var(--f-body); letter-spacing: .015em;
	transition: color .35s var(--ease);
}
.btn::before {
	content: ''; position: absolute; inset: 0; z-index: -1; background: var(--accent-deep);
	transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }
.btn .arrow { display: none; }
.btn--sm { min-height: 42px; padding: 0 22px; font-size: .875rem; }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light::before { background: var(--accent); }
.btn--light:hover, .btn--light:focus-visible { color: var(--ink); }

.link {
	position: relative; display: inline-flex; align-items: center; gap: 10px; font-weight: 500; padding-bottom: 3px;
	transition: color .3s;
}
.link::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
	transform-origin: right; transition: transform .45s var(--ease);
}
.link:hover { color: var(--accent-deep); }
.link:hover::after { transform: scaleX(.18); }
.link .arrow { flex: none; transition: transform .4s var(--ease); }
.link:hover .arrow { transform: translateX(5px); }
.text-link { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .22em; transition: color .3s; }
.text-link:hover { color: var(--accent-deep); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--line); transition: transform .5s var(--ease); }
.site-header.is-hidden { transform: translateY(-101%); }
.site-header__in { display: flex; align-items: center; gap: 28px; height: var(--hdr); }
.brand { display: block; flex: none; }
.brand img { height: 50px; width: auto; mix-blend-mode: multiply; }
.nav { display: none; margin-left: auto; gap: clamp(26px, 3vw, 46px); font-weight: 500; font-size: .9375rem; }
.nav a { position: relative; padding: 8px 0; }
.nav a::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 3px; height: 1px; background: currentColor;
	transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current='page']::after { transform: scaleX(1); background: var(--accent); height: 2px; }
.site-header .btn { margin-left: auto; }
.menu-toggle { font-weight: 500; font-size: .9375rem; padding: 10px 2px 10px 6px; }
@media (min-width: 960px) {
	.nav { display: flex; }
	.site-header .btn { margin-left: 0; }
	.menu-toggle { display: none; }
}
@media (max-width: 420px) { .site-header .btn { padding: 0 16px; } .site-header__in { gap: 14px; } .brand img { height: 46px; } }

/* Mobile menu */
.menu {
	position: fixed; inset: 0; z-index: 100; background: var(--paper);
	display: flex; flex-direction: column; padding: 0 var(--gut) 28px; overflow-y: auto;
	opacity: 0; visibility: hidden; transform: translateY(-10px);
	transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.menu__top { display: flex; align-items: center; justify-content: space-between; height: var(--hdr); border-bottom: 1px solid var(--line); flex: none; }
.menu__list { margin-top: 20px; }
.menu__list a { display: block; padding: 9px 0; font: 400 clamp(2.125rem, 8vw, 3rem)/1.15 var(--f-display); letter-spacing: -.02em; }
.menu__list a:hover { font-style: italic; }
.menu__foot { margin-top: auto; padding-top: 32px; display: grid; gap: 16px; font-size: .9375rem; color: var(--muted); }
.menu__foot .btn { justify-self: start; }
.menu__foot strong { color: var(--ink); font-weight: 500; }
@media (min-width: 960px) { .menu { display: none; } }

/* ---------- Home: hero ---------- */
.hero { display: grid; grid-template-columns: 1fr; max-width: 1680px; margin-inline: auto; }
.hero__text { padding: clamp(36px, 6vw, 64px) var(--gut) clamp(36px, 5vw, 52px); display: flex; flex-direction: column; }
.hero__date { margin-bottom: 20px; }
.hero h1 { max-width: 13em; line-height: 1.06; }
.hero__lead { margin-top: 22px; max-width: 25em; font-size: clamp(1.0625rem, .5vw + .95rem, 1.25rem); line-height: 1.55; color: var(--muted); }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; }
.hero__now { margin-top: 44px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 2px 36px; font-size: .9375rem; color: var(--muted); }
.hero__now strong { font-weight: 500; color: var(--ink); }
.hero__now a:hover { color: var(--accent-deep); }
.hero__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--surface); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
@media (min-width: 640px) { .hero__media { aspect-ratio: 1 / 1; } }
@media (min-width: 960px) {
	.hero { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); min-height: clamp(560px, calc(100svh - var(--hdr)), 880px); }
	.hero__text { padding: clamp(56px, 10vh, 112px) 56px 44px var(--gut); }
	.hero__cta { margin-bottom: 48px; }
	.hero__now { margin-top: auto; }
	.hero__media { aspect-ratio: auto; margin-top: 40px; }
	.hero__media img { position: absolute; inset: 0; }
}
@media (prefers-reduced-motion: no-preference) {
	.hero__media img { animation: settle 1.8s var(--ease) both; }
	.hero__date, .hero h1, .hero__lead, .hero__cta, .hero__now { animation: rise .9s var(--ease) both; }
	.hero h1 { animation-delay: .08s; }
	.hero__lead { animation-delay: .18s; }
	.hero__cta { animation-delay: .28s; }
	.hero__now { animation-delay: .4s; }
	@keyframes settle { from { transform: scale(1.05); } to { transform: scale(1); } }
	@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(72px, 10vw, 152px); }
.section--tight { padding-block: clamp(56px, 7vw, 104px); }

/* Story: arch photo, text, and the ten minutes as a real number */
.story { align-items: start; row-gap: 44px; }
.story__photo { grid-column: 1 / -1; max-width: 520px; }
.story__text { grid-column: 1 / -1; }
.arch { border-radius: 999px 999px 0 0; overflow: hidden; aspect-ratio: 4 / 5; background: var(--surface); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.story__text h2 { margin-bottom: 26px; }
.ten { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 0 clamp(20px, 3vw, 36px); align-items: end; max-width: 32em; }
.ten__n { font: 400 clamp(5rem, 8vw, 8rem)/.78 var(--f-display); letter-spacing: -.04em; color: var(--accent); font-variant-numeric: lining-nums; }
.ten__t { color: var(--muted); padding-bottom: 4px; }
.ten__t b { display: block; color: var(--ink); font-weight: 600; }
.story__more { margin-top: 34px; }
@media (min-width: 900px) {
	.story__photo { grid-column: 1 / span 5; max-width: none; }
	.story__text { grid-column: 7 / span 6; padding-top: clamp(32px, 6vw, 104px); padding-right: 3vw; }
}

/* Services: a real price list, with one photo that stays alongside */
.index { padding-top: 0; }
.index__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.index__head { max-width: 40em; margin-bottom: clamp(32px, 4vw, 56px); }
.index__head h2 { margin-bottom: 14px; }
.index__row {
	display: grid; grid-template-columns: 1fr auto; gap: 6px 24px; align-items: baseline; padding: 28px 0; border-top: 1px solid var(--line);
	transition: color .3s;
}
.index li:last-child .index__row { border-bottom: 1px solid var(--line); }
.index__name { font: 400 clamp(1.75rem, 1.4vw + 1.2rem, 2.5rem)/1.1 var(--f-display); letter-spacing: -.018em; transition: transform .45s var(--ease); }
.index__price { font: 500 .9375rem/1.4 var(--f-body); font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--accent-deep); }
.index__desc { grid-column: 1 / -1; color: var(--muted); max-width: 38em; }
.index__desc b { display: block; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.index__row:hover .index__name { transform: translateX(8px); }
.index__all { margin-top: 32px; }
.index__photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface); }
.index__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
@media (min-width: 1000px) {
	.index__grid { grid-template-columns: minmax(0, 1fr) clamp(230px, 24vw, 350px); column-gap: clamp(48px, 7vw, 112px); align-items: start; }
	.index__photo { aspect-ratio: 3 / 4; position: sticky; top: calc(var(--hdr) + 40px); margin-top: 6px; }
	.index__photo img { object-position: 50% 50%; }
}

/* Quote: the rating as a real number, the review beside it */
.quote { background: var(--surface); padding-block: clamp(72px, 9vw, 128px); }
.quote .grid { row-gap: 32px; align-items: start; }
.quote__score { grid-column: 1 / -1; display: flex; align-items: baseline; gap: 16px; }
.quote__score b { font: 400 clamp(4.5rem, 8vw, 8rem)/.85 var(--f-display); letter-spacing: -.04em; font-variant-numeric: lining-nums; }
.quote__score span { color: var(--muted); font-size: .9375rem; line-height: 1.4; }
.quote__in { grid-column: 1 / -1; }
.quote blockquote p { font: italic 400 clamp(1.5rem, 1.3vw + 1.1rem, 2.125rem)/1.24 var(--f-display); letter-spacing: -.012em; text-wrap: pretty; }
.quote figcaption { margin-top: 24px; color: var(--muted); font-size: .9375rem; }
.quote figcaption b { color: var(--ink); font-weight: 500; }
@media (min-width: 900px) {
	.quote__score { grid-column: 1 / span 3; display: block; }
	.quote__score span { display: block; margin-top: 14px; max-width: 11em; }
	.quote__in { grid-column: 4 / span 5; padding-top: 12px; }
}

/* Booking: a calm blue field, one photo that steps up over the edge */
.booking { background: var(--sky); position: relative; }
.booking .grid { row-gap: 44px; align-items: start; }
.booking__main { grid-column: 1 / -1; }
.booking__photo { grid-column: 1 / -1; max-width: 340px; }
.booking__photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 62%; }
.booking__main h2 { margin-bottom: 22px; max-width: 13em; }
.booking__cta { margin-top: 34px; }
.booking__note { margin-top: 16px; font-size: .875rem; color: var(--muted); max-width: 32em; }
.booking__note a { font-weight: 500; color: var(--ink); }
@media (min-width: 900px) {
	.booking__main { grid-column: 1 / span 6; }
	.booking__photo { grid-column: 9 / span 4; max-width: none; position: relative; z-index: 2; margin-top: calc(-1 * (clamp(72px, 10vw, 152px) + clamp(48px, 6vw, 96px))); }
}

/* Visit: hours and address */
.visit { align-items: start; row-gap: 48px; }
.visit__photo { grid-column: 1 / -1; }
.visit__info { grid-column: 1 / -1; }
.visit__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: var(--surface); }
.visit__photo figcaption { margin-top: 12px; font-size: .875rem; color: var(--muted); }
.visit h2 { margin-bottom: 30px; }
.hours { border-top: 1px solid var(--ink); }
.hours li { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.hours .day { font-weight: 500; }
.hours .time { font-variant-numeric: tabular-nums; }
.hours .is-closed .time { color: var(--muted); }
.hours .is-today .day::after { content: 'vandaag'; margin-left: 12px; font: 500 .6875rem/1 var(--f-body); letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); }
.contact { margin-top: 44px; display: grid; gap: 22px; }
.contact div { display: grid; gap: 2px; }
.contact dt { font: 500 .6875rem/1.4 var(--f-body); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact dd a:hover { color: var(--accent-deep); }
.contact .wide dd { font: 400 1.625rem/1.3 var(--f-display); letter-spacing: -.012em; }
@media (min-width: 900px) {
	.visit__photo { grid-column: 1 / span 5; }
	.visit__info { grid-column: 7 / span 6; padding-top: clamp(0px, 5vw, 80px); }
	.contact { grid-template-columns: 1fr 1fr; gap: 28px 32px; }
	.contact .wide { grid-column: 1 / -1; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding-block: clamp(64px, 8vw, 112px) 32px; }
.site-footer a:hover { color: #E4B877; }
.footer__top { display: grid; gap: 44px; padding-bottom: clamp(44px, 6vw, 80px); border-bottom: 1px solid rgba(243, 241, 236, .22); }
.footer__say { font: 400 clamp(2.25rem, 3.2vw + .9rem, 4.25rem)/1.05 var(--f-display); letter-spacing: -.024em; max-width: 9em; text-wrap: balance; }
.footer__cta { margin-top: 32px; }
.footer__contact { display: grid; gap: 26px; align-content: end; }
.footer__contact h2, .footer__cols h2 { font: 500 .6875rem/1.4 var(--f-body); letter-spacing: .12em; text-transform: uppercase; color: rgba(243, 241, 236, .62); margin-bottom: 8px; }
.footer__phone { font: 400 clamp(1.875rem, 1.6vw + 1.2rem, 2.75rem)/1.1 var(--f-display); letter-spacing: -.015em; display: inline-block; }
.footer__contact p, .footer__contact a:not(.footer__phone) { color: rgba(243, 241, 236, .86); }
.footer__cols { display: grid; gap: 40px; padding-top: 44px; }
.footer__cols p, .footer__cols li { color: rgba(243, 241, 236, .88); }
.footer__hours li { display: flex; justify-content: space-between; gap: 16px; max-width: 18rem; font-variant-numeric: tabular-nums; }
.footer__hours .is-closed { color: rgba(243, 241, 236, .55); }
.footer__nav li + li { margin-top: 6px; }
.footer__map { border: 1px solid rgba(243, 241, 236, .22); overflow: hidden; }
.footer__map iframe { display: block; width: 100%; height: 200px; filter: grayscale(1) contrast(.95) sepia(.18); opacity: .92; }
.footer__bottom { margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(243, 241, 236, .22); font-size: .8125rem; color: rgba(243, 241, 236, .62); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px; }
.footer__logo { display: inline-block; width: 56px; height: 56px; border-radius: 50%; background: #fff; overflow: hidden; flex: none; }
.footer__logo img { width: 100%; height: 100%; object-fit: cover; }
.footer__copy { display: flex; align-items: center; gap: 16px; }
@media (min-width: 900px) {
	.footer__top { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; align-items: end; }
	.footer__say-wrap { grid-column: 1 / span 7; }
	.footer__contact { grid-column: 9 / span 4; }
	.footer__cols { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; }
	.footer__c1 { grid-column: 1 / span 4; }
	.footer__c2 { grid-column: 6 / span 3; }
	.footer__c3 { grid-column: 9 / span 4; }
}

/* ---------- Inner pages: head ---------- */
.page-head { padding-top: clamp(56px, 8vw, 120px); padding-bottom: clamp(36px, 5vw, 72px); }
.page-head h1 { max-width: 14em; }
.page-head .lead { margin-top: 24px; }

/* ---------- Diensten ---------- */
.prices { padding-bottom: clamp(72px, 9vw, 130px); row-gap: 36px; }
.prices__side { grid-column: 1 / -1; }
.prices__main { grid-column: 1 / -1; }
.tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--line); }
.tabs button { padding: 10px 0 12px; font: 400 1.375rem/1.2 var(--f-display); letter-spacing: -.01em; color: var(--muted); position: relative; transition: color .3s; }
.tabs button::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.tabs button[aria-pressed='true'] { color: var(--ink); }
.tabs button[aria-pressed='true']::after { transform: scaleX(1); }
.tabs button:hover { color: var(--ink); }
.subnav { margin-top: 18px; display: flex; gap: 8px 22px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.subnav::-webkit-scrollbar { display: none; }
.subnav a { white-space: nowrap; font-size: .9375rem; color: var(--muted); padding: 4px 0; transition: color .3s; }
.subnav a:hover { color: var(--ink); }
@media (min-width: 900px) {
	.prices__side { grid-column: 1 / span 3; align-self: start; position: sticky; top: calc(var(--hdr) + 36px); }
	.prices__main { grid-column: 5 / -1; }
	.subnav { flex-direction: column; overflow: visible; gap: 2px; margin-top: 26px; }
	.subnav a { font-size: 1rem; padding: 6px 0; }
}
.acc { border-top: 1px solid var(--line); scroll-margin-top: calc(var(--hdr) + 16px); }
.acc:last-of-type { border-bottom: 1px solid var(--line); }
.acc__btn { width: 100%; display: grid; grid-template-columns: 1fr auto 28px; align-items: center; gap: 16px; padding: 26px 0; }
.acc__name { font: 400 clamp(1.625rem, 1.4vw + 1.1rem, 2.25rem)/1.12 var(--f-display); letter-spacing: -.018em; transition: transform .45s var(--ease); }
.acc__btn:hover .acc__name { transform: translateX(6px); }
.acc__count { font-size: .875rem; color: var(--muted); }
.acc__sign { position: relative; width: 18px; height: 18px; justify-self: end; }
.acc__sign::before, .acc__sign::after { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1.5px; margin-top: -.75px; background: currentColor; transition: transform .35s var(--ease); }
.acc__sign::after { transform: rotate(90deg); }
.acc__btn[aria-expanded='true'] .acc__sign::after { transform: rotate(0); }
.acc__panel { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .35s var(--ease), opacity .35s var(--ease); }
.acc__panel.is-open { grid-template-rows: 1fr; opacity: 1; }
.acc__panel > div { min-height: 0; overflow: hidden; }
.acc__items { padding-bottom: 30px; }
.acc__items li { display: flex; align-items: baseline; gap: 12px; padding: 12px 0; }
.acc__items .what { flex: 0 1 auto; max-width: 34em; }
.acc__items .what h3 { font: 500 1.0625rem/1.4 var(--f-body); letter-spacing: 0; }
.acc__items .what p { font-size: .9375rem; color: var(--muted); margin-top: 2px; }
.acc__items .fill { flex: 1 1 24px; min-width: 24px; border-bottom: 1px dotted rgba(38, 36, 33, .4); transform: translateY(-5px); }
.acc__items .price { font: 500 1.0625rem/1.3 var(--f-body); font-variant-numeric: tabular-nums; white-space: nowrap; }
.acc__note { padding-bottom: 30px; margin-top: -8px; font-size: .9375rem; font-style: italic; color: var(--muted); max-width: 36em; }
.wedding { margin-top: clamp(48px, 6vw, 80px); padding: 32px 0; border-top: 1px solid var(--ink); display: grid; gap: 14px; max-width: 40em; }
.wedding h2 { font-size: 1.875rem; }
.wedding p { color: var(--muted); }

/* Closing CTA band (inner pages) */
.close-cta { background: var(--surface); }
.close-cta .grid { row-gap: 28px; align-items: end; }
.close-cta__main { grid-column: 1 / -1; }
.close-cta__act { grid-column: 1 / -1; }
.close-cta h2 { margin-bottom: 18px; }
.close-cta__act p { margin-top: 14px; font-size: .9375rem; color: var(--muted); }
.close-cta__act p a { font-weight: 500; color: var(--ink); }
@media (min-width: 900px) {
	.close-cta__main { grid-column: 1 / span 7; }
	.close-cta__act { grid-column: 9 / span 4; }
}

/* ---------- Producten ---------- */
.kms { row-gap: 44px; align-items: start; padding-bottom: clamp(64px, 8vw, 120px); }
.kms__fig { grid-column: 1 / -1; max-width: 340px; }
.kms__crop { position: relative; overflow: hidden; aspect-ratio: 739 / 1094; background: var(--surface); }
.kms__crop img { position: absolute; left: 0; top: 0; width: 100%; height: auto; transform: translateY(-13.4%); }
.kms__fig figcaption { margin-top: 12px; font-size: .875rem; color: var(--muted); }
.kms__text { grid-column: 1 / -1; }
.kms__text h2 { margin-bottom: 30px; }
@media (min-width: 900px) {
	.kms__fig { grid-column: 1 / span 4; }
	.kms__text { grid-column: 6 / span 6; padding-top: 36px; }
}
.steps { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.steps > div { padding: 26px 0 30px; border-bottom: 1px solid var(--line); }
.steps h3 { font: 500 .8125rem/1.4 var(--f-body); letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 10px; }
.steps .what { font: 400 1.75rem/1.2 var(--f-display); letter-spacing: -.015em; margin-bottom: 8px; }
.steps p { color: var(--muted); max-width: 26em; }
.steps__note { margin-top: 26px; color: var(--muted); font-size: .9375rem; }
@media (min-width: 900px) {
	.steps { grid-template-columns: repeat(3, 1fr); }
	.steps > div { border-bottom: 0; padding: 30px 32px 8px 0; }
	.steps > div + div { padding-left: 32px; border-left: 1px solid var(--line); }
}
.more { row-gap: 56px; align-items: start; }
.more__a { grid-column: 1 / -1; }
.more__b { grid-column: 1 / -1; }
.more figure img { width: 100%; object-fit: cover; }
.more__a img { aspect-ratio: 4 / 5; }
.more__b img { aspect-ratio: 4 / 3; }
.more h3 { margin-top: 18px; font: 400 1.75rem/1.15 var(--f-display); letter-spacing: -.015em; }
.more figcaption p { margin-top: 8px; color: var(--muted); max-width: 30em; }
@media (min-width: 900px) {
	.more__a { grid-column: 1 / span 5; }
	.more__b { grid-column: 7 / span 6; margin-top: 120px; }
}

/* ---------- Over ons ---------- */
.about { row-gap: 44px; align-items: center; }
.about__photo { grid-column: 1 / -1; max-width: 480px; }
.about__text { grid-column: 1 / -1; }
.about__coffee { margin-top: 26px; font: italic 400 1.625rem/1.3 var(--f-display); color: var(--ink); }
@media (min-width: 900px) {
	.about__photo { grid-column: 1 / span 5; max-width: none; }
	.about__text { grid-column: 7 / span 6; }
}
.principles { border-top: 1px solid var(--ink); }
.principles > div { display: grid; gap: 6px 32px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.principles dt { font: 400 1.5rem/1.25 var(--f-display); letter-spacing: -.012em; }
.principles dd { color: var(--muted); max-width: 32em; }
@media (min-width: 900px) { .principles > div { grid-template-columns: 5fr 7fr; padding: 32px 0; } .principles-wrap { display: grid; grid-template-columns: 4fr 8fr; gap: 24px; } }
.principles-wrap h2 { margin-bottom: 36px; }

.gallery-head { margin-bottom: clamp(32px, 4vw, 56px); }
.gal { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.gal figure { overflow: hidden; background: var(--surface); }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gal figure:hover img { transform: scale(1.03); }
.gal .g1 { grid-column: 1 / -1; aspect-ratio: 4 / 5; }
.gal .g2 { aspect-ratio: 3 / 4; }
.gal .g3 { aspect-ratio: 3 / 4; }
.gal .g4 { aspect-ratio: 4 / 5; }
.gal .g5 { aspect-ratio: 1 / 1; }
.gal .g6 { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.gal .g6 img { object-position: 50% 45%; }
@media (min-width: 900px) {
	.gal { grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: start; }
	.gal .g1 { grid-column: 1 / span 6; aspect-ratio: 4 / 5; }
	.gal .g2 { grid-column: 8 / span 4; margin-top: 140px; }
	.gal .g3 { grid-column: 2 / span 3; margin-top: 30px; }
	.gal .g4 { grid-column: 6 / span 4; margin-top: 90px; }
	.gal .g5 { grid-column: 10 / span 3; margin-top: 10px; }
	.gal .g6 { grid-column: 4 / span 8; margin-top: 30px; }
}

.reviews__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 24px 48px; margin-bottom: clamp(36px, 5vw, 64px); }
.rating { display: flex; align-items: baseline; gap: 14px; }
.rating b { font: 400 clamp(3.5rem, 6vw, 5.5rem)/1 var(--f-display); letter-spacing: -.03em; font-variant-numeric: lining-nums; }
.rating span { color: var(--muted); }
.review-feature { max-width: 60rem; padding-bottom: clamp(36px, 5vw, 64px); border-bottom: 1px solid var(--line); }
.review-feature p { font: italic 400 clamp(1.5rem, 1.8vw + .8rem, 2.375rem)/1.25 var(--f-display); letter-spacing: -.012em; text-wrap: pretty; }
.review-feature footer, .review footer { margin-top: 22px; color: var(--muted); font-size: .9375rem; }
.review-feature footer b, .review footer b { color: var(--ink); font-weight: 500; }
.review-list { columns: 1; column-gap: 64px; }
.review { break-inside: avoid; padding: 30px 0; border-bottom: 1px solid var(--line); }
.review p { font: 400 1.375rem/1.4 var(--f-display); letter-spacing: -.008em; text-wrap: pretty; }
@media (min-width: 900px) { .review-list { columns: 2; } }

/* ---------- 404 ---------- */
.lost { padding-block: clamp(80px, 12vw, 180px); }
.lost .lead { margin-top: 24px; }
.lost__act { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 22px 32px; align-items: center; }

/* ---------- Reveal on scroll (visible when JS does not run) ---------- */
@media (prefers-reduced-motion: no-preference) {
	.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
	.js .reveal.is-in { opacity: 1; transform: none; }
	.js .index li.reveal:nth-child(2) { transition-delay: .06s; }
	.js .index li.reveal:nth-child(3) { transition-delay: .12s; }
	.js .index li.reveal:nth-child(4) { transition-delay: .18s; }
	.js .index li.reveal:nth-child(5) { transition-delay: .24s; }
}
@media (prefers-reduced-motion: reduce) {
	* { transition-duration: .01ms !important; animation-duration: .01ms !important; }
	.site-header.is-hidden { transform: none; }
}

/* Logged-in admin bar */
.admin-bar .site-header { top: 32px; }
.admin-bar .menu { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } .admin-bar .menu { top: 46px; } }

/* ---------- Verfijning: logo-goud als subtiel accent, contactregel, header, hero-foto ---------- */
:root { --taupe: #857868; --sand: #EBE3D4; --gold-line: rgba(178, 125, 52, .55); --hdr: 68px; }

.label { display: inline-flex; align-items: center; gap: 12px; }
.label::before { content: ''; flex: none; width: 28px; height: 1px; background: var(--accent); }
.sec-no { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; font: 500 .75rem/1 var(--f-body); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.sec-no span { color: var(--accent-deep); font-variant-numeric: tabular-nums; }
.sec-no::after { content: ''; flex: 0 0 clamp(36px, 6vw, 72px); height: 1px; background: var(--accent); }

/* Buttons and links: calm ink, one thin gold detail */
.btn { border-bottom: 2px solid var(--accent); }
.btn:focus-visible { outline-color: var(--accent); }
.link { color: var(--ink); }
.link::after { background: var(--accent); }
.hero__cta .link { font-weight: 400; color: var(--muted); }
.hero__cta .link:hover { color: var(--ink); }
.hero__cta { gap: 20px 28px; }

/* Header */
.site-header { border-bottom: 1px solid var(--line); }
.site-header__in { gap: 20px; }
.brand img { height: 46px; }
.site-header .btn--sm { min-height: 40px; padding: 0 20px; }
.menu-toggle { position: relative; display: inline-flex; align-items: center; min-height: 40px; padding: 0 0 0 2px; font-size: .9375rem; }
.menu-toggle[data-menu-open]::after { content: ''; position: absolute; left: 2px; right: 0; bottom: 7px; height: 1px; background: var(--accent); }
@media (max-width: 420px) { .brand img { height: 42px; } .site-header__in { gap: 12px; } .site-header .btn--sm { padding: 0 16px; } }

/* Hero: hierarchy, and the practical info as typography with hairlines */
.hero h1 { letter-spacing: -.026em; }
.hero__lead { font-size: clamp(1rem, .4vw + .95rem, 1.1875rem); }
.hero__now { display: block; gap: 0; margin-top: 40px; padding-top: 0; border-top: 1px solid var(--gold-line); }
.hero__now > div { display: grid; grid-template-columns: 5.25rem 1fr; align-items: baseline; gap: 0 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.hero__now dt { font: 500 .6875rem/1.4 var(--f-body); letter-spacing: .12em; text-transform: uppercase; color: var(--taupe); }
.hero__now dd { color: var(--ink); font-size: .9375rem; }
.hero__now dd a:hover { color: var(--accent-deep); }
.now-dot { display: inline-block; width: 6px; height: 6px; margin-right: 9px; border-radius: 50%; background: var(--accent); transform: translateY(-1px); }
.now-dot.is-closed { background: transparent; border: 1px solid var(--taupe); }
.hero__media { aspect-ratio: 3 / 4; }
.hero__media img { object-position: 50% 45%; }
@media (min-width: 640px) { .hero__media { aspect-ratio: 5 / 4; } }
@media (min-width: 960px) {
	.hero__media { aspect-ratio: auto; }
	.hero__now { margin-top: auto; display: grid; grid-template-columns: 1.5fr 1.3fr 1fr; column-gap: 32px; border-bottom: 0; }
	.hero__now > div { display: block; padding: 16px 0 0; border-bottom: 0; }
	.hero__now dt { margin-bottom: 4px; }
}

/* Details in the design system */
.ten { border-top-color: var(--gold-line); }
.quote { background: var(--sand); }
.hours { border-top-color: var(--accent); }
.index__row:hover { border-top-color: var(--accent); }
.site-footer { border-top: 3px solid var(--accent); }
.footer__contact h2, .footer__cols h2 { color: #C9A265; }
@media (min-width: 960px) { .menu-toggle { display: none; } }

/* ---------- Ronde 3: geen decoratieve streepjes, hero-foto als achtergrond ---------- */
.label::before, .sec-no::after, .menu-toggle[data-menu-open]::after { display: none; }
.label { gap: 0; }
.btn { border-bottom: 0; }
.hours { border-top-color: var(--ink); }
.ten { border-top-color: var(--line); }
.site-footer { border-top: 0; }
.link::after { background: currentColor; }

.hero { position: relative; display: flex; grid-template-columns: none; max-width: none; min-height: max(620px, calc(100svh - var(--hdr))); background: var(--ink); color: #FBF8F2; }
.hero__media { position: absolute; inset: 0; margin: 0; aspect-ratio: auto; z-index: 0; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; filter: saturate(.92) contrast(1.02); }
.hero__media::after { content: ''; position: absolute; inset: 0; background: rgba(28, 26, 23, .56); }
.hero__text { position: relative; z-index: 1; width: 100%; max-width: 46rem; justify-content: flex-end; padding: clamp(56px, 9vh, 104px) var(--gut) clamp(32px, 5vh, 48px); }
.hero .label, .hero__date { color: #E4B877; }
.hero h1 { color: #FBF8F2; }
.hero__lead { color: rgba(251, 248, 242, .88); }
.hero .btn { background: #FBF8F2; color: var(--ink); }
.hero .btn::before { background: #E4B877; }
.hero .btn:hover, .hero .btn:focus-visible { color: var(--ink); }
.hero .btn:focus-visible, .hero .link:focus-visible { outline-color: #E4B877; }
.hero__cta .link, .hero__cta .link:hover { color: #FBF8F2; }
.hero__cta .link::after { background: rgba(251, 248, 242, .7); }
.hero__now, .hero__now > div { border: 0; }
.hero__now { margin-top: 44px; }
.hero__now > div { padding: 5px 0; }
.hero__now dt { color: rgba(251, 248, 242, .62); }
.hero__now dd { color: #FBF8F2; }
.hero__now dd a:hover { color: #E4B877; }
.now-dot { background: #E4B877; }
.now-dot.is-closed { background: transparent; border-color: rgba(251, 248, 242, .7); }
@media (min-width: 960px) {
	.hero__text { max-width: none; padding-right: 0; }
	.hero__text > * { max-width: 46rem; }
	.hero__cta { margin-bottom: 0; }
	.hero__now { margin-top: 56px; grid-template-columns: 1.6fr 1.4fr 1fr; max-width: 46rem; }
	.hero__now > div { padding: 0; }
}
.hero__now dd { position: relative; }
.now-dot { position: absolute; left: -15px; top: .62em; margin: 0; transform: none; }
@media (max-width: 959px) { .hero__now > div { grid-template-columns: 5.25rem 1fr; } .hero__now dd { padding-left: 0; } }

/* ---------- Ronde 4: duidelijke knophiërarchie en aparte mobiele inhoud ---------- */
.show-m { display: none; }

/* Primair: donker, ruim, met het gouden logo-puntje. Secundair: tekstlink met pijl en gouden onderstreping. */
.btn { min-height: 54px; padding: 0 30px; font-weight: 600; }
.btn::after { content: ''; flex: none; width: 7px; height: 7px; margin-left: 12px; border-radius: 50%; background: var(--accent); transition: background .35s var(--ease); }
.btn:hover::after, .btn:focus-visible::after { background: #FBF8F2; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn--sm { min-height: 44px; padding: 0 20px; }
.btn--sm::after { display: none; }
.site-header .btn--sm { min-height: 44px; }
.hero .btn::after { background: var(--accent); }
.hero .btn:hover::after, .hero .btn:focus-visible::after { background: var(--ink); }
.link { font-weight: 500; padding: 10px 0 7px; }
.link::after { bottom: 5px; background: var(--accent); }
.link .arrow { color: var(--accent-deep); }
.hero__cta .link { font-weight: 500; }
.hero__cta .link::after { background: #E4B877; }
.hero__cta .link .arrow { color: #E4B877; }

@media (max-width: 899px) {
	.hide-m { display: none !important; }
	.show-m { display: inline !important; }
	.section { padding-block: 64px; }
	.hero__text { padding-top: 40px; padding-bottom: 32px; }
	.hero__lead { margin-top: 14px; }
	.hero__cta { margin-top: 24px; }
	.hero__now { margin-top: 26px; }
	.hero__now > div { padding: 3px 0; }
	.hero__now dd { font-size: .875rem; }
	.story { row-gap: 30px; }
	.story__photo { max-width: 76%; }
	.ten { margin-top: 30px; }
	.index__head { margin-bottom: 22px; }
	.index__row { padding: 22px 0; }
	.index__name { font-size: 1.75rem; }
	.index__photo { display: none; }
	.quote { padding-block: 56px; }
	.booking__photo { display: none; }
	.booking__cta .btn { width: 100%; }
	.visit { row-gap: 32px; }
	.visit__photo img { aspect-ratio: 16 / 10; }
	.hours li { padding: 10px 0; }
	.site-footer { padding-top: 56px; }
	.footer__c3 { display: none; }
	.footer__bottom { margin-top: 40px; }
}
@media (max-width: 639px) {
	.hero__cta { flex-direction: column; align-items: stretch; gap: 8px; }
	.hero__cta .btn { width: 100%; min-height: 56px; }
	.hero__cta .link { align-self: flex-start; }
}
/* ---------- Google-reviews: rustige redactionele quotes ---------- */
.reviews { padding-block: clamp(72px, 10vw, 144px); }
.reviews__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px 48px; margin-bottom: clamp(32px, 5vw, 72px); }
.reviews__head h2 { max-width: 9em; }
.reviews__score { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; }
.g-badge { display: inline-flex; align-items: center; gap: 8px; font: 500 .9375rem/1 var(--f-body); color: var(--ink); }
.g-badge svg { width: 18px; height: 18px; flex: none; }
.reviews__num { display: flex; align-items: baseline; gap: 6px; }
.reviews__num b { font: 400 clamp(2.25rem, 3.4vw, 3.25rem)/1 var(--f-display); letter-spacing: -.03em; font-variant-numeric: lining-nums; }
.reviews__num span { color: var(--muted); font-size: 1rem; }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; }
.stars .stars__defs { position: absolute; width: 0; height: 0; }
.s-on { fill: var(--accent); }
.s-off { fill: rgba(178, 125, 52, .26); }
.reviews__list { display: grid; grid-template-columns: 1fr; gap: 40px; }
.quote-item { position: relative; padding-top: 22px; border-top: 1px solid var(--line); }
.quote-item::before { content: '\201C'; display: block; height: 2.25rem; font: 400 3.75rem/1 var(--f-display); color: var(--accent); }
.quote-item blockquote p { font: 400 clamp(1.1875rem, .6vw + 1rem, 1.4375rem)/1.42 var(--f-display); letter-spacing: -.008em; text-wrap: pretty; }
.quote-item figcaption { margin-top: 18px; font-size: .875rem; color: var(--muted); }
.quote-item figcaption b { color: var(--ink); font-weight: 500; }
.quote-item.is-empty blockquote p { color: var(--muted); font-style: italic; }
.reviews__more { margin-top: clamp(28px, 4vw, 56px); }
@media (min-width: 900px) {
	.reviews__list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(40px, 5vw, 88px); }
	.quote-item:nth-child(2) { margin-top: 56px; }
}
@media (max-width: 899px) {
	.reviews { padding-block: 56px; }
	.reviews__list { display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut); padding-bottom: 4px; }
	.reviews__list::-webkit-scrollbar { display: none; }
	.quote-item { flex: 0 0 82%; scroll-snap-align: start; }
}
@media (max-width: 899px) { .reviews__list { scroll-padding-inline: var(--gut); } }

/* ---------- Boeking: donker antraciet, lichte knop, telefoon als tweede weg ---------- */
.booking { background: var(--ink); color: #FBF8F2; }
.booking .grid { align-items: center; }
.booking__main h2 { color: #FBF8F2; max-width: 12em; }
.booking__main h2 em { color: #E4B877; }
.booking .lead { color: rgba(251, 248, 242, .82); max-width: 30em; }
.booking .btn { background: #FBF8F2; color: var(--ink); min-height: 60px; padding: 0 38px; font-size: 1rem; }
.booking .btn::before { background: #E4B877; }
.booking .btn:hover, .booking .btn:focus-visible { color: var(--ink); }
.booking .btn:hover::after, .booking .btn:focus-visible::after { background: var(--ink); }
.booking .btn:focus-visible { outline-color: #E4B877; }
.booking__call { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 16px; }
.booking__call span { color: rgba(251, 248, 242, .7); font-size: .9375rem; }
.booking__call a { font: 400 clamp(1.625rem, 1.4vw + 1.1rem, 2.125rem)/1.1 var(--f-display); letter-spacing: -.012em; color: #FBF8F2; transition: color .3s; }
.booking__call a:hover { color: #E4B877; }
.booking__note { margin-top: 14px; font-size: .8125rem; color: rgba(251, 248, 242, .6); }
@media (min-width: 900px) {
	.booking__main { grid-column: 1 / span 6; }
	.booking__photo { grid-column: 8 / span 5; }
}
/* ---------- Ronde 5: compactere verticale ruimte ---------- */
:root { --sec: clamp(52px, 6.5vw, 100px); }
.section { padding-block: var(--sec); }
.index { padding-top: 0; }
.reviews { padding-block: var(--sec); }
.quote { padding-block: var(--sec); }
.story__text { padding-top: clamp(16px, 3.5vw, 56px); }
.reviews__head { margin-bottom: clamp(28px, 3.6vw, 52px); }
.index__head { margin-bottom: clamp(24px, 3vw, 44px); }
.reviews__more { margin-top: clamp(24px, 3vw, 40px); }
.site-footer { padding-top: clamp(52px, 6vw, 88px); }
.footer__top { padding-bottom: clamp(36px, 4.6vw, 64px); }
@media (min-width: 900px) {
	.quote-item:nth-child(2) { margin-top: 40px; }
	.booking__photo { margin-top: calc(-1 * (var(--sec) + clamp(40px, 4.5vw, 64px))); }
}
@media (max-width: 899px) {
	.section, .reviews { padding-block: 52px; }
}
