/* FRONTEND2 — Hilde Van Bulck. One stylesheet, design tokens on :root, no framework.
   Brand: plum (#694f5a, the colour of the current website), the sunset of the logo (coral + sun yellow), warm paper.
   Motif: the arch of the logo shield, used as the shape of portraits and cards. */

:root {
    --paper: #fbf7f2;
    --paper-2: #f4ece3;
    --paper-3: #ecdfd2;
    --white: #ffffff;
    --ink: #2a2025;
    --ink-2: #5a4d53;
    --ink-3: #8a7c82;
    --line: #e7dbd0;
    --line-strong: #d6c6b8;
    --plum: #694f5a;
    --plum-dark: #4a3740;
    --plum-deep: #2f2228;
    --plum-soft: #efe5e9;
    --coral: #d4603f;
    --coral-soft: #fbe6de;
    --sun: #eeaa2b;
    --sun-soft: #fcf1d9;
    --wine: #9c3135;
    --success: #3d7a55;
    --success-soft: #e3f1e8;
    --danger: #b3372d;
    --danger-soft: #fbe7e4;
    --warning: #9a6200;
    --warning-soft: #fdf1dc;

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --arch: 999px 999px 22px 22px;
    --shadow-sm: 0 1px 2px rgba(47, 34, 40, .06);
    --shadow: 0 2px 6px rgba(47, 34, 40, .05), 0 12px 32px rgba(47, 34, 40, .07);
    --shadow-lg: 0 24px 60px rgba(47, 34, 40, .14);

    --container: 1200px;
    --gutter: clamp(16px, 4vw, 40px);
    --header-h: 72px;
    --ease: cubic-bezier(.2, .7, .2, 1);
    color-scheme: light;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }

/* PAGE TRANSITIONS (Chrome, Edge, Safari 18+; others just load the page): the header stays, the page underneath fades in */
@media (prefers-reduced-motion: no-preference) {
    @view-transition { navigation: auto; }
    ::view-transition-old(root) { animation: f2-page-out .14s ease-in both; }
    ::view-transition-new(root) { animation: f2-page-in .28s var(--ease) both; }
}
.site-header { view-transition-name: site-header; }
.admin-bar { view-transition-name: admin-bar; }
::view-transition-group(site-header), ::view-transition-group(admin-bar) { animation-duration: .2s; }
@keyframes f2-page-out { to { opacity: 0; } }
@keyframes f2-page-in { from { opacity: 0; transform: translateY(6px); } }

/* NAVIGATION FEEDBACK: thin bar at the top when the next page takes a moment (site.js adds html.is-navigating after ~120ms) */
.nav-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; pointer-events: none; transform-origin: 0 50%; transform: scaleX(0); opacity: 0; background: linear-gradient(90deg, var(--plum), var(--coral), var(--sun)); transition: opacity .2s; }
html.is-navigating .nav-progress { opacity: 1; animation: f2-progress 10s cubic-bezier(.08, .8, .2, 1) forwards; }
@keyframes f2-progress { 0% { transform: scaleX(0); } 8% { transform: scaleX(.35); } 100% { transform: scaleX(.94); } }
@media (prefers-reduced-motion: reduce) { html.is-navigating .nav-progress { animation: none; transform: scaleX(.6); } } /* components with display:grid/flex must still hide (agenda filters, offer filters, toggled fields) */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--plum-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; margin: 0 0 .5em; color: var(--ink); font-optical-sizing: auto; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 1.4rem + 3.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.8vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .5vw, 1.45rem); }
p { margin: 0 0 1em; }
.icon { width: 1.1em; height: 1.1em; flex: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--plum); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm); z-index: 100; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--coral) 70%, white); outline-offset: 2px; border-radius: 4px; }
.container { width: 100%; max-width: calc(var(--container) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: calc(760px + 2 * var(--gutter)); }
.muted { color: var(--ink-3); }
.small { font-size: .88rem; }
.center { text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: .78em 1.35em; border-radius: 999px; border: 1.5px solid transparent; font: inherit; font-weight: 500; font-size: .98rem; line-height: 1.2; cursor: pointer; text-decoration: none; white-space: nowrap; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease); }
.btn:active { transform: translateY(1px); }
.btn .icon { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--plum); color: #fff; }
.btn-primary:hover { background: var(--plum-dark); color: #fff; box-shadow: 0 6px 18px rgba(105, 79, 90, .28); }
.btn-secondary { background: transparent; color: var(--plum); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--plum); color: var(--plum-dark); background: var(--white); }
.btn-ghost { background: transparent; color: var(--plum); padding-left: .4em; padding-right: .4em; }
.btn-ghost:hover { color: var(--plum-dark); }
.btn-light { background: var(--paper); color: var(--plum-dark); }
.btn-light:hover { background: #fff; color: var(--plum-deep); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: #bb4f31; color: #fff; }
.btn-sm { padding: .55em 1.05em; font-size: .9rem; }
.btn-lg { padding: 1em 1.8em; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .55; pointer-events: none; }
.btn.is-loading::after { content: ''; width: 1em; height: 1em; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-weight: 500; text-decoration: none; color: var(--plum); white-space: nowrap; }
.link-arrow .icon { transition: transform .2s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- badges, notices ---------- */
.badge { display: inline-flex; align-items: center; gap: .3em; padding: .2em .65em; border-radius: 999px; font-size: .78rem; font-weight: 500; letter-spacing: .01em; line-height: 1.5; white-space: nowrap; vertical-align: middle; font-family: var(--font-body); }
.badge-neutral { background: var(--paper-2); color: var(--ink-2); }
.badge-plum { background: var(--plum-soft); color: var(--plum-dark); }
.badge-sun { background: var(--sun-soft); color: #8a5a00; }
.badge-coral { background: var(--coral-soft); color: #a8421f; }
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-danger { background: var(--danger-soft); color: var(--danger); }
.badge-warning { background: var(--warning-soft); color: var(--warning); }
.badge-muted { background: var(--paper-2); color: var(--ink-3); }
.notice { display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); margin: 0 0 16px; }
.notice .icon { margin-top: .2em; }
.notice > div > :last-child { margin-bottom: 0; }
.notice-info { background: var(--plum-soft); border-color: #e2d3da; color: var(--plum-dark); }
.notice-success { background: var(--success-soft); border-color: #c9e3d3; color: #2c5d40; }
.notice-danger { background: var(--danger-soft); border-color: #f1c9c3; color: #8e2a22; }
.notice-warning { background: var(--warning-soft); border-color: #f1ddb4; color: #7a4d00; }
.flashes { padding-top: 20px; }

/* ---------- admin bar (admins only) ---------- */
.admin-bar { display: flex; gap: 18px; align-items: center; justify-content: flex-end; padding: 6px var(--gutter); background: var(--plum-deep); color: #e9dde2; font-size: .8rem; }
.admin-bar span { display: inline-flex; gap: 6px; align-items: center; margin-right: auto; }
.admin-bar .admin-bar-edit { margin-right: 0; color: var(--sun); }
.admin-bar a { color: #fff; }
.tiny { outline: 2px dashed color-mix(in srgb, var(--sun) 60%, transparent); outline-offset: 6px; border-radius: 4px; }
.tiny .f2-spacer { position: absolute; width: 1px; height: 1px; margin: 0 !important; padding: 0 !important; overflow: hidden; clip-path: inset(50%); } /* empty spacer paragraphs of the old layout: out of the flow (the margins around them collapse like on the public page), still in the html */

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(47, 34, 40, .05); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); flex: none; }
.brand img { width: 27px; height: 40px; object-fit: contain; }
.brand-name { font-family: var(--font-display); font-size: 1.28rem; letter-spacing: -.01em; }
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-link { display: inline-flex; align-items: center; gap: 4px; padding: 8px 12px; border-radius: 999px; color: var(--ink-2); text-decoration: none; font: inherit; font-size: .97rem; font-weight: 500; background: none; border: 0; cursor: pointer; }
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--ink); background: var(--paper-2); }
.nav-link.active { color: var(--plum); }
.nav-link .icon { width: 15px; height: 15px; transition: transform .2s; }
.nav-link[aria-expanded="true"] .icon { transform: rotate(180deg); }
.has-sub { position: relative; }
.submenu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-4px); min-width: 210px; list-style: none; margin: 0; padding: 8px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: opacity .15s, transform .15s, visibility .15s; }
.has-sub.open .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 9px 12px; border-radius: var(--radius-sm); color: var(--ink); text-decoration: none; }
.submenu a:hover, .submenu a[aria-current] { background: var(--paper-2); color: var(--plum); }
.submenu .icon { width: 14px; height: 14px; color: var(--ink-3); }
.header-tools { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: inline-flex; gap: 2px; font-size: .82rem; font-weight: 500; letter-spacing: .04em; }
.lang-switch a { padding: 4px 7px; border-radius: 6px; color: var(--ink-3); text-decoration: none; }
.lang-switch a:hover { color: var(--ink); }
.lang-switch a[aria-current] { color: var(--plum); background: var(--plum-soft); }
.account-link { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); text-decoration: none; font-size: .95rem; font-weight: 500; }
.account-link:hover { color: var(--plum); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; margin-right: -8px; color: var(--ink); cursor: pointer; }
.menu-toggle .icon { width: 26px; height: 26px; }
.mobile-menu { border-top: 1px solid var(--line); background: var(--paper); max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
.mobile-menu ul { list-style: none; margin: 0; padding: 12px 0; }
.mobile-menu li a { display: block; padding: 12px 0; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-menu-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 0 28px; }
.site-header.bare { position: static; background: var(--paper); border-bottom-color: var(--line); }
.site-header.bare .header-tools { margin-left: auto; } /* no menu in between: push the account link to the right */
@media (max-width: 1080px) { .main-nav, .header-tools .lang-switch, .header-cta { display: none; } .menu-toggle { display: inline-flex; } .header-tools { margin-left: auto; } .account-link span { display: none; } .site-header.bare .account-link span { display: inline; } }

/* ---------- sections ---------- */
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-tight { padding: clamp(36px, 5vw, 64px) 0; }
.section-sand { background: var(--paper-2); }
.section-plum { background: var(--plum-deep); color: #efe6ea; }
.section-plum h2, .section-plum h3 { color: #fff; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(24px, 4vw, 44px); }
.section-head h2 { margin: 0; }
.section-head.center { justify-content: center; text-align: center; }
.kicker { font-family: var(--font-body); font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); margin: 0 0 .7em; }
.section-plum .kicker { color: var(--sun); }
.lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); color: var(--ink-2); max-width: 60ch; }
.page-hero { padding: clamp(40px, 7vw, 88px) 0 clamp(28px, 4vw, 48px); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-bottom: 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .88rem; color: var(--ink-3); margin-bottom: 18px; }
.breadcrumbs a { color: var(--ink-3); text-decoration: none; }
.breadcrumbs a:hover { color: var(--plum); }

/* ---------- arch images ---------- */
.arch { border-radius: var(--arch); overflow: hidden; }
.arch img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- home: hero ---------- */
.hero { position: relative; padding: clamp(32px, 6vw, 72px) 0 clamp(56px, 8vw, 110px); overflow: hidden; }
.hero::before { content: ''; position: absolute; width: min(70vw, 820px); aspect-ratio: 1; right: -18%; top: -30%; background: radial-gradient(circle at 50% 50%, rgba(238, 170, 43, .22), rgba(212, 96, 63, .10) 45%, transparent 70%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 1.5rem + 4vw, 4.9rem); font-weight: 350; letter-spacing: -.02em; margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--plum); }
.hero .lead { margin-bottom: 1.8em; }
.hero-roles { margin-top: 28px; font-size: .9rem; color: var(--ink-3); }
.hero-visual { position: relative; }
.hero-visual .arch { aspect-ratio: 4 / 5.2; box-shadow: var(--shadow-lg); }
.hero-card { position: absolute; left: -12%; bottom: 8%; max-width: 280px; background: var(--white); border-radius: var(--radius); padding: 14px 16px; box-shadow: var(--shadow); display: flex; gap: 12px; align-items: center; text-decoration: none; color: var(--ink); transition: transform .2s var(--ease); }
.hero-card:hover { transform: translateY(-2px); color: var(--ink); }
.hero-card .date-block { flex: none; }
.hero-card strong { display: block; font-family: var(--font-display); font-weight: 450; font-size: 1.02rem; line-height: 1.25; }
.hero-card span.small { color: var(--ink-3); }
@media (max-width: 860px) { .hero-grid { grid-template-columns: minmax(0, 1fr); } .hero-visual { max-width: 420px; margin: 0 auto; width: 88%; } .hero-card { left: -6%; } }

/* ---------- date block ---------- */
.date-block { display: inline-grid; justify-items: center; align-content: center; width: 64px; min-height: 72px; padding: 6px 0; border-radius: 16px; background: var(--plum-soft); color: var(--plum-dark); line-height: 1; }
.date-day { font-family: var(--font-display); font-size: 1.75rem; font-weight: 450; }
.date-mon { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.date-wd { font-size: .72rem; color: var(--ink-3); margin-top: 3px; }

/* ---------- agenda rows ---------- */
.agenda-list { display: grid; gap: 14px; }
.agenda-month { font-family: var(--font-display); font-size: 1.35rem; margin: 30px 0 4px; color: var(--ink-2); display: flex; align-items: center; gap: 14px; }
.agenda-month::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.agenda-month:first-child { margin-top: 0; }
.agenda-row { display: grid; grid-template-columns: auto 112px minmax(0, 1fr) auto; gap: 22px; align-items: center; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: box-shadow .2s var(--ease), border-color .2s, transform .2s var(--ease); }
.agenda-row:hover { box-shadow: var(--shadow); border-color: var(--line-strong); }
.agenda-row.compact { grid-template-columns: auto 1fr auto; }
.agenda-date { text-decoration: none; }
.agenda-thumb { display: block; width: 112px; aspect-ratio: 1; border-radius: 14px; overflow: hidden; background: var(--paper-2); }
.agenda-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.agenda-row:hover .agenda-thumb img { transform: scale(1.04); }
.agenda-main { min-width: 0; }
.agenda-main h3 { margin: 2px 0 4px; font-size: 1.3rem; }
.agenda-main h3 a { color: var(--ink); text-decoration: none; }
.agenda-main h3 a:hover { color: var(--plum); }
.agenda-tags { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--coral); margin: 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.agenda-tags .badge { text-transform: none; letter-spacing: 0; }
.agenda-sub { margin: 0 0 4px; color: var(--ink-2); }
.agenda-meta { display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 6px 0 0; font-size: .92rem; color: var(--ink-2); }
.agenda-meta span { display: inline-flex; align-items: center; gap: 6px; }
.agenda-meta .icon { color: var(--ink-3); width: 16px; height: 16px; }
.agenda-cta { display: grid; gap: 8px; justify-items: end; text-align: right; }
.agenda-price { margin: 0; font-weight: 600; color: var(--ink); white-space: nowrap; }
@media (max-width: 900px) { .agenda-row { grid-template-columns: auto 1fr; gap: 14px 16px; align-items: start; } .agenda-thumb { display: none; } .agenda-cta { grid-column: 1 / -1; grid-template-columns: 1fr auto; align-items: center; justify-items: start; text-align: left; padding-top: 12px; border-top: 1px solid var(--line); } .agenda-row.compact { grid-template-columns: auto 1fr; } }

/* ---------- agenda filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 28px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: .5em 1em; border-radius: 999px; border: 1.5px solid var(--line-strong); background: var(--white); color: var(--ink-2); font: inherit; font-size: .92rem; font-weight: 500; cursor: pointer; text-decoration: none; transition: all .15s; }
.chip:hover { border-color: var(--plum); color: var(--plum); }
.chip[aria-pressed="true"], .chip.active { background: var(--plum); border-color: var(--plum); color: #fff; }
.chip .count { font-size: .78rem; opacity: .7; }
.search-input { position: relative; margin-left: auto; min-width: min(280px, 100%); }
.search-input .icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-3); width: 18px; height: 18px; }
.search-input input { width: 100%; padding: .7em 1em .7em 2.6em; border-radius: 999px; border: 1.5px solid var(--line-strong); background: var(--white); font: inherit; font-size: .95rem; }
.search-input input:focus { border-color: var(--plum); outline: none; box-shadow: 0 0 0 4px var(--plum-soft); }
@media (max-width: 700px) { .search-input { margin-left: 0; width: 100%; } .filters { gap: 8px; } }
.empty-state { text-align: center; padding: 56px 20px; border: 1.5px dashed var(--line-strong); border-radius: var(--radius-lg); color: var(--ink-2); }
.empty-state h3 { margin-bottom: .3em; }

/* ---------- offer cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: clamp(18px, 3vw, 32px); }
.offer-card { display: flex; flex-direction: column; }
.offer-image { display: block; aspect-ratio: 4 / 4.4; background: var(--paper-2); margin-bottom: 16px; }
.offer-image img { transition: transform .6s var(--ease); }
.offer-card:hover .offer-image img { transform: scale(1.04); }
.offer-body h3 { margin: 4px 0 6px; }
.offer-body h3 a { color: var(--ink); text-decoration: none; }
.offer-body h3 a:hover { color: var(--plum); }
.offer-sub { color: var(--ink-2); font-size: .96rem; margin-bottom: 10px; }
.offer-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: center; font-size: .9rem; color: var(--ink-2); margin: 0; }
.offer-meta .icon { color: var(--coral); width: 16px; height: 16px; margin-right: 4px; vertical-align: -3px; }
.offer-price { font-weight: 600; color: var(--ink); margin-left: auto; }
.offer-group-title { font-family: var(--font-display); font-size: 1.6rem; margin: 48px 0 20px; }

/* ---------- experiences ---------- */
.experiences { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.experience { text-decoration: none; color: var(--ink); text-align: center; }
.experience .arch { aspect-ratio: 3 / 4; margin-bottom: 14px; background: var(--paper-3); }
.experience .arch img { transition: transform .6s var(--ease); }
.experience:hover .arch img { transform: scale(1.05); }
.experience strong { display: block; font-family: var(--font-display); font-weight: 450; font-size: 1.12rem; }
.experience span { display: block; font-size: .9rem; color: var(--ink-3); margin-top: 4px; }
@media (max-width: 960px) { .experiences { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .experiences { grid-template-columns: repeat(2, 1fr); } }

/* ---------- split (image + text) ---------- */
.split { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(28px, 6vw, 88px); align-items: center; }
.split.reverse { grid-template-columns: 7fr 5fr; }
.split.reverse > :first-child { order: 2; }
.split-image .arch { aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
@media (max-width: 860px) { .split, .split.reverse { grid-template-columns: minmax(0, 1fr); } .split.reverse > :first-child { order: 0; } .split-image { max-width: 420px; } }

/* ---------- prose (content from the Space) ---------- */
.prose { font-size: 1.06rem; color: var(--ink); max-width: 68ch; }
.prose h1, .prose h2 { font-size: clamp(1.35rem, 1.15rem + .7vw, 1.75rem); margin: 1.6em 0 .5em; }
.prose h3 { font-size: 1.3rem; margin: 1.4em 0 .4em; }
.prose h1:first-child, .prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p, .prose ul, .prose ol { margin: 0 0 1.05em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .35em; }
.prose img { border-radius: var(--radius); margin: 1.6em 0; height: auto !important; }
.prose a { color: var(--plum); text-decoration: underline; }
.prose blockquote { margin: 1.6em 0; padding: .2em 0 .2em 1.2em; border-left: 3px solid var(--coral); font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--ink-2); }
.prose hr { border: 0; height: 1px; background: var(--line); margin: 2em 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: .95rem; }
.prose td, .prose th { padding: 8px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose iframe { max-width: 100%; border-radius: var(--radius); }
.prose-plum { color: #efe6ea; }
.prose-plum a { color: var(--sun); }
.section-plum .prose { color: #efe6ea; }

/* ---------- mission band ---------- */
.mission { text-align: center; }
.mission h2 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4.2rem); font-weight: 300; font-style: italic; margin-bottom: .2em; }
.mission .motto { font-family: var(--font-display); font-size: 1.4rem; color: var(--sun); margin-bottom: 1.4em; }
.mission .prose { margin: 0 auto; text-align: left; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: clamp(24px, 4vw, 48px); text-align: left; }
.pillar { padding: clamp(22px, 3vw, 34px); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); }
.pillar h3 { font-size: 2rem; font-style: italic; font-weight: 350; color: #fff; margin: 6px 0 12px; }
.pillar-num { font-size: .8rem; letter-spacing: .14em; color: var(--sun); font-weight: 600; }
.pillar .prose { font-size: .98rem; color: #dfd3d8; }
@media (max-width: 860px) { .pillars { grid-template-columns: minmax(0, 1fr); } }

/* ---------- event page ---------- */
.event-hero { padding: clamp(24px, 4vw, 48px) 0 0; }
.event-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.event-hero h1 { font-size: clamp(2.2rem, 1.3rem + 3.2vw, 4rem); margin-bottom: .25em; }
.event-hero .subtitle { font-family: var(--font-display); font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem); font-style: italic; color: var(--ink-2); margin-bottom: 1em; }
.event-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--paper-2); box-shadow: var(--shadow); }
.event-image img { width: 100%; height: 100%; object-fit: cover; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.event-body { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(32px, 5vw, 72px); align-items: start; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }
.booking-card { position: sticky; top: calc(var(--header-h) + 20px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.booking-card h2 { font-size: 1.35rem; margin-bottom: 14px; }
.booking-price { font-family: var(--font-display); font-size: 2rem; line-height: 1.1; margin: 0 0 4px; }
.booking-price small { font-family: var(--font-body); font-size: .9rem; color: var(--ink-3); }
.booking-discount { display: flex; gap: 8px; align-items: flex-start; font-size: .92rem; color: #8a5a00; background: var(--sun-soft); padding: 10px 12px; border-radius: var(--radius-sm); margin: 12px 0 0; }
.booking-discount .icon { margin-top: 3px; }
.booking-facts { list-style: none; margin: 18px 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; font-size: .95rem; color: var(--ink-2); }
.booking-facts li { display: flex; gap: 10px; align-items: flex-start; }
.booking-facts .icon { color: var(--coral); margin-top: 4px; width: 17px; height: 17px; }
.booking-card .btn { width: 100%; }
.booking-note { font-size: .86rem; color: var(--ink-3); margin: 12px 0 0; text-align: center; }
.dates-list { display: grid; gap: 12px; }
.date-item { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.date-item h3 { font-size: 1.12rem; margin: 0 0 4px; }
.date-item .agenda-meta { margin-top: 2px; }
.date-item .address { font-size: .88rem; color: var(--ink-3); }
.date-item .address a { color: var(--ink-3); }
@media (max-width: 720px) { .date-item { grid-template-columns: auto 1fr; } .date-item > .date-actions { grid-column: 1 / -1; } }
.price-table { width: 100%; border-collapse: collapse; }
.price-table td { padding: 12px 0; border-bottom: 1px solid var(--line); }
.price-table td:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
.mobile-cta { display: none; }
@media (max-width: 980px) {
    .event-hero-grid { grid-template-columns: minmax(0, 1fr); }
    .event-body { grid-template-columns: minmax(0, 1fr); }
    .booking-card { position: static; }
    .mobile-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; gap: 12px; align-items: center; justify-content: space-between; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--white) 94%, transparent); backdrop-filter: blur(12px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(47, 34, 40, .08); transform: translateY(110%); transition: transform .3s var(--ease); }
    .mobile-cta.visible { transform: translateY(0); }
    .mobile-cta strong { font-family: var(--font-display); font-weight: 450; font-size: 1.15rem; }
    .mobile-cta .small { display: block; color: var(--ink-3); }
}
.gallery { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 32%); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; scrollbar-width: thin; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); scroll-snap-align: start; background: var(--paper-2); }
@media (max-width: 700px) { .gallery { grid-auto-columns: 78%; } }
.callout { padding: clamp(24px, 4vw, 40px); border-radius: var(--radius-lg); background: var(--paper-2); }
.callout.plum { background: var(--plum-deep); color: #efe6ea; }
.callout.plum h2, .callout.plum h3 { color: #fff; }
.callout.sun { background: linear-gradient(135deg, var(--sun-soft), var(--coral-soft)); }

/* ---------- kikker ---------- */
.kikker { background: #1f4a2c; color: #eef4e6; border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; gap: 0; }
.kikker > div { padding: clamp(24px, 4vw, 48px); }
.kikker h2 { color: #fff; }
.kikker .kicker { color: #f4d63c; }
.kikker img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) { .kikker { grid-template-columns: minmax(0, 1fr); } }

/* ---------- checkout ---------- */
.checkout { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: clamp(24px, 4vw, 56px); align-items: start; padding-top: clamp(24px, 4vw, 48px); padding-bottom: 96px; }
.checkout-title { margin-bottom: 28px; }
.checkout-title h1 { font-size: clamp(1.9rem, 1.3rem + 2vw, 2.8rem); margin: 0; }
.checkout-title .kicker { margin-bottom: .4em; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(18px, 3vw, 28px); margin-bottom: 20px; }
.step-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.step-num { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--plum); color: #fff; font-weight: 600; font-size: .95rem; flex: none; }
.step-head h2 { font-size: 1.45rem; margin: 0; }
.step-head .step-aside { margin-left: auto; }
.step.is-disabled { opacity: .55; }
.choice-list { display: grid; gap: 10px; }
.choice { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--paper); cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; }
.choice:hover { border-color: var(--line-strong); background: var(--white); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice .tick { width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--line-strong); display: inline-grid; place-items: center; background: var(--white); transition: all .15s; }
.choice input[type="radio"] + .tick { border-radius: 50%; }
.choice .tick .icon { width: 15px; height: 15px; color: #fff; opacity: 0; }
.choice:has(input:checked) { border-color: var(--plum); background: var(--white); box-shadow: 0 0 0 3px var(--plum-soft); }
.choice:has(input:checked) .tick { background: var(--plum); border-color: var(--plum); }
.choice:has(input:checked) .tick .icon { opacity: 1; }
.choice:has(input:focus-visible) { outline: 3px solid color-mix(in srgb, var(--coral) 60%, white); outline-offset: 2px; }
.choice:has(input:disabled) { opacity: .5; cursor: not-allowed; }
.choice-title { display: block; font-weight: 500; }
.choice-sub { display: block; font-size: .88rem; color: var(--ink-3); }
.choice-price { font-weight: 600; white-space: nowrap; }
.choice.static { cursor: default; grid-template-columns: auto 1fr; }
.day-block { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; background: var(--paper); }
.day-block + .day-block { margin-top: 10px; }
.day-block-head { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; }
.day-block-head strong { display: block; }
.price-pills { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 10px; }
.option-group { margin-top: 18px; }
.option-group:first-child { margin-top: 0; }
.option-group h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin: 0 0 4px; display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; }
.option-group h3 .muted { font-weight: 400; font-size: .85rem; }
.option-group .option-desc { font-size: .9rem; color: var(--ink-3); margin: 0 0 10px; }
.option-day-title { font-weight: 600; margin: 22px 0 10px; display: flex; gap: 8px; align-items: center; color: var(--plum-dark); }
.select-all { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; margin-bottom: 14px; border-radius: var(--radius); background: var(--sun-soft); color: #7a4f00; font-size: .94rem; }
.select-all.done { background: var(--success-soft); color: var(--success); }
.summary { position: sticky; top: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.summary-head { display: flex; gap: 14px; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--line); background: var(--paper); }
.summary-head img { width: 58px; height: 58px; object-fit: cover; border-radius: 12px; flex: none; }
.summary-head strong { font-family: var(--font-display); font-weight: 450; font-size: 1.1rem; line-height: 1.2; display: block; }
.summary-body { padding: 18px 22px; }
.summary-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.summary-lines li { display: flex; justify-content: space-between; gap: 14px; font-size: .95rem; }
.summary-lines li span:first-child small { display: block; color: var(--ink-3); font-size: .82rem; }
.summary-lines li .amount { white-space: nowrap; font-variant-numeric: tabular-nums; }
.summary-lines li.discount .amount { color: var(--success); }
.summary-lines li.option span:first-child { color: var(--ink-2); }
.summary-empty { color: var(--ink-3); font-size: .95rem; margin: 0; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.summary-total strong { font-family: var(--font-display); font-weight: 450; font-size: 1.9rem; font-variant-numeric: tabular-nums; }
.summary-total span { color: var(--ink-3); font-size: .88rem; }
.summary-foot { padding: 0 22px 22px; }
.summary-foot .btn { width: 100%; }
.terms-check { font-size: .88rem; margin: 0 0 14px; }
.terms-check + .field-error { margin: -8px 0 14px; }
.pay-note { display: flex; gap: 8px; align-items: flex-start; font-size: .84rem; color: var(--ink-3); margin: 12px 0 0; }
.pay-note .icon { margin-top: 3px; color: var(--success); }
.coupon { margin-top: 16px; }
.coupon summary { cursor: pointer; font-size: .92rem; color: var(--plum); font-weight: 500; list-style: none; display: inline-flex; gap: 6px; align-items: center; }
.coupon summary::-webkit-details-marker { display: none; }
.coupon-row { display: flex; gap: 8px; margin-top: 10px; }
.coupon-row input { flex: 1; text-transform: uppercase; }
.coupon-message { font-size: .86rem; margin: 8px 0 0; }
.coupon-message.ok { color: var(--success); }
.coupon-message.bad { color: var(--danger); }
.summary.is-loading .summary-body { opacity: .55; transition: opacity .2s; }
.checkout-mobile-bar { display: none; }
@media (max-width: 980px) {
    .checkout { grid-template-columns: minmax(0, 1fr); padding-bottom: 120px; }
    .summary { position: static; }
    .checkout-mobile-bar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; gap: 12px; align-items: center; justify-content: space-between; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(47, 34, 40, .08); }
    .checkout-mobile-bar strong { font-family: var(--font-display); font-weight: 450; font-size: 1.4rem; }
}
.login-box { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.login-box > div { padding: 20px; }
.login-box > div + div { background: var(--paper); border-left: 1px solid var(--line); }
.login-box h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
@media (max-width: 720px) { .login-box { grid-template-columns: minmax(0, 1fr); } .login-box > div + div { border-left: 0; border-top: 1px solid var(--line); } }
.logged-in-as { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--radius); background: var(--paper); margin-bottom: 18px; font-size: .94rem; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0 16px; }
.form-grid .c-2 { grid-column: span 2; } .form-grid .c-3 { grid-column: span 3; } .form-grid .c-4 { grid-column: span 4; } .form-grid .c-6 { grid-column: span 6; }
@media (max-width: 600px) { .form-grid .c-2, .form-grid .c-3, .form-grid .c-4 { grid-column: span 6; } .form-grid .c-2.keep { grid-column: span 2; } .form-grid .c-4.keep { grid-column: span 4; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .9rem; font-weight: 500; color: var(--ink-2); }
.field .optional { font-weight: 400; color: var(--ink-3); }
.field input, .field select, .field textarea, .input { width: 100%; font: inherit; font-size: 1rem; padding: .72em .9em; border: 1.5px solid var(--line-strong); border-radius: 10px; background: var(--white); color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%238a7c82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus, .input:focus { outline: none; border-color: var(--plum); box-shadow: 0 0 0 4px var(--plum-soft); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .86rem; margin: 0; }
.field-help { color: var(--ink-3); font-size: .86rem; margin: 0; }
.check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: .96rem; }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--plum); flex: none; }
.check.has-error { color: var(--danger); }
.fieldset-title { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin: 8px 0 12px; }
.invoice-fields { margin-top: 14px; padding: 16px; border-radius: var(--radius); background: var(--paper); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 36px); box-shadow: var(--shadow-sm); }
.form-card h1 { font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.5rem); }
.auth-wrap { max-width: calc(480px + 2 * var(--gutter)); margin: 0 auto; padding: clamp(32px, 6vw, 72px) var(--gutter); }
.link-button { background: none; border: 0; padding: 0; font: inherit; color: var(--plum); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.link-button:hover { color: var(--plum-dark); }
.link-button .icon { width: 15px; height: 15px; }
.code-field { --slot-gap: 10px; --digit: 1.75rem; }
/* the six boxes fill the width of the form (as wide as the button): a box is a sixth of the container, in container units so the
   input's letter-spacing can use the same length */
.code-slots { position: relative; width: 100%; margin: 4px 0 0; container-type: inline-size; --slot: calc((100cqw - 5 * var(--slot-gap)) / 6); }
/* six boxes drawn behind one plain input; a monospace digit is .6em wide, so letter-spacing puts each digit in its box.
   The real caret is hidden (it sits left of the next digit); a drawn one blinks in the middle of the current box. */
.code-slots i { position: absolute; top: 0; bottom: 0; width: var(--slot); border: 1.5px solid var(--line-strong); border-radius: 12px; pointer-events: none; transition: border-color .15s, box-shadow .15s; }
.code-slots input { position: relative; z-index: 1; display: block; width: calc(100% + var(--slot)); height: 60px; margin: 0; padding: 0 0 0 calc((var(--slot) - .6em) / 2); border: 0; outline: 0; background: transparent; box-shadow: none; font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace; font-size: var(--digit); font-weight: 600; color: var(--ink); letter-spacing: calc(var(--slot) + var(--slot-gap) - .6em); caret-color: transparent; font-variant-numeric: tabular-nums; clip-path: inset(0 var(--slot) 0 0); }
.code-slots input:focus { box-shadow: none; }
.code-slots:focus-within i { border-color: var(--plum); }
.code-slots:focus-within i.current { box-shadow: 0 0 0 4px var(--plum-soft); }
.code-slots:focus-within i.current::after { content: ''; position: absolute; left: 50%; top: 26%; bottom: 26%; width: 2px; margin-left: -1px; background: var(--plum); animation: f2-blink 1.05s steps(1) infinite; }
@keyframes f2-blink { 50% { opacity: 0; } }
.code-slots i { background: var(--white); z-index: 0; }
.code-field.has-error .code-slots i { border-color: var(--danger); }
@media (max-width: 420px) { .code-field { --slot-gap: 7px; --digit: 1.5rem; } }
.password-alt { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 16px; }
.password-alt summary { cursor: pointer; color: var(--ink-2); font-weight: 600; }
.password-alt form { margin-top: 14px; }
.login-box.single { grid-template-columns: minmax(0, 1fr); }
.login-inline { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; }
.login-inline .field { flex: 1 1 260px; margin: 0; }
.auth-links { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 16px; font-size: .94rem; }
.divider { display: flex; align-items: center; gap: 12px; color: var(--ink-3); font-size: .88rem; margin: 22px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }

/* ---------- account ---------- */
.account-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; align-items: start; }
@media (max-width: 900px) { .account-grid { grid-template-columns: minmax(0, 1fr); } }
.order-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 16px 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--ink); transition: box-shadow .2s, border-color .2s; }
.order-card:hover { box-shadow: var(--shadow); color: var(--ink); border-color: var(--line-strong); }
.order-card h3 { font-size: 1.15rem; margin: 0 0 4px; }
.order-card .small { color: var(--ink-3); }
.order-card + .order-card { margin-top: 10px; }
.side-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.side-card h2 { font-size: 1.2rem; }
.side-card + .side-card { margin-top: 16px; }
.side-links { list-style: none; margin: 0; padding: 0; }
.side-links a { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--ink); }
.side-links li:last-child a { border-bottom: 0; }
.side-links a:hover { color: var(--plum); }
.side-links .icon { color: var(--ink-3); }
.status-hero { text-align: center; padding: clamp(32px, 6vw, 64px) 0 24px; }
.status-icon { width: 76px; height: 76px; border-radius: 50%; display: inline-grid; place-items: center; margin-bottom: 18px; }
.status-icon .icon { width: 36px; height: 36px; }
.status-icon.success { background: var(--success-soft); color: var(--success); }
.status-icon.warning { background: var(--warning-soft); color: var(--warning); }
.status-icon.danger { background: var(--danger-soft); color: var(--danger); }
.detail-list { margin: 0; }
.detail-list div { display: grid; grid-template-columns: 160px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.detail-list dt { color: var(--ink-3); font-size: .92rem; }
.detail-list dd { margin: 0; }
@media (max-width: 560px) { .detail-list div { grid-template-columns: minmax(0, 1fr); gap: 2px; } }

/* ---------- blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: clamp(20px, 3vw, 36px); }
.post-card { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); }
.post-card .post-image { aspect-ratio: 3 / 2; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-2); margin-bottom: 16px; }
.post-card .post-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-image img { transform: scale(1.04); }
.post-card h3 { margin: 6px 0 8px; }
.post-card:hover h3 { color: var(--plum); }
.post-card p { color: var(--ink-2); font-size: .97rem; margin: 0; }
.post-meta { font-size: .84rem; color: var(--ink-3); display: flex; gap: 10px; flex-wrap: wrap; }
.post-hero { padding: clamp(32px, 6vw, 72px) 0 28px; text-align: center; }
.post-hero h1 { max-width: 20ch; margin: 0 auto .3em; }
.post-hero .lead { margin: 0 auto; }
.post-cover { max-width: 1000px; margin: 0 auto 40px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 9; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-body { margin: 0 auto; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 18px; }

/* ---------- books / publications ---------- */
.book { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 5vw, 64px); align-items: start; }
.book-cover { position: sticky; top: calc(var(--header-h) + 24px); }
.book-cover img { border-radius: 6px; box-shadow: 0 20px 50px rgba(47, 34, 40, .22); }
.book + .book { margin-top: clamp(48px, 7vw, 88px); }
@media (max-width: 760px) { .book { grid-template-columns: minmax(0, 1fr); } .book-cover { max-width: 240px; } }
.pub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.pub { text-decoration: none; color: var(--ink); }
.pub img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top; border-radius: var(--radius-sm); box-shadow: var(--shadow); margin-bottom: 12px; background: var(--paper-2); transition: transform .3s var(--ease); }
.pub:hover img { transform: translateY(-4px); }
.pub strong { font-family: var(--font-display); font-weight: 450; font-size: 1.05rem; line-height: 1.3; display: block; }

/* ---------- testimonials / quote ---------- */
.big-quote { font-family: var(--font-display); font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.4rem); font-weight: 350; font-style: italic; line-height: 1.3; max-width: 26ch; margin: 0 auto; text-align: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--plum-deep); color: #d9ccd2; padding: clamp(48px, 7vw, 80px) 0 28px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr; gap: 36px; }
.brand-light { color: #fff; }
.brand-light img { background: #fff; border-radius: 6px; padding: 3px; width: 33px; height: 46px; }
.footer-quote { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: #fff; margin: 18px 0; max-width: 26ch; }
.footer-title { font-family: var(--font-body); font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sun); margin-bottom: 14px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-links a { color: #e9dfe3; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-links .icon { width: 16px; height: 16px; color: #b9a8b0; }
.footer-news p { font-size: .95rem; }
.socials { display: flex; gap: 8px; }
.socials a { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .18); color: #fff; transition: background .15s; }
.socials a:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.socials .icon { width: 18px; height: 18px; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .84rem; color: #b9a8b0; }
.footer-legal a { color: #b9a8b0; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- reveal on scroll (progressive: only when js adds .reveal-ready) ---------- */
.reveal-ready .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-ready .reveal.in { opacity: 1; transform: none; }

/* ---------- utilities ---------- */
.stack > * + * { margin-top: 16px; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
@media (max-width: 760px) { .two-col { grid-template-columns: minmax(0, 1fr); } }
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.info-card .icon { color: var(--coral); width: 22px; height: 22px; margin-bottom: 8px; }
.info-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.info-card p { margin: 0; color: var(--ink-2); }
/* ============ FILLER PHOTOS (between sections, as on the current website) ============ */
.filler { margin: 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 6; background: var(--paper-2); box-shadow: var(--shadow-sm); }
.section .filler.end { margin-top: clamp(56px, 8vw, 110px); }          /* = .section padding-bottom */
.section-tight .filler.end { margin-top: clamp(36px, 5vw, 64px); }  /* = .section-tight padding-bottom */
.filler img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) { .filler { aspect-ratio: 4 / 3; border-radius: var(--radius); } }

/* ============ YOUTUBE: a still with a play button; the player only loads on a click (site.js) ============ */
.yt { position: relative; aspect-ratio: 16 / 9; background: #000; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-facade { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: #000; cursor: pointer; display: block; }
.yt-facade img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .92; transition: opacity .2s, transform .5s var(--ease); }
.yt-facade:hover img { opacity: 1; transform: scale(1.02); }
.yt-play { position: absolute; left: 50%; top: 50%; width: 72px; height: 72px; margin: -36px 0 0 -36px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .92); color: var(--plum-deep); box-shadow: 0 10px 30px rgba(0, 0, 0, .3); transition: transform .2s var(--ease), background .2s; }
.yt-play .icon { width: 30px; height: 30px; margin-left: 4px; }
.yt-facade:hover .yt-play, .short-card:hover .yt-play { transform: scale(1.08); background: #fff; }
.yt-facade:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; }

/* ============ DE EIGENWIJZE KIKKER (the book's own colours: woodland green, morning mist, gold) ============ */
.kikker-feature { --k-dark: #184f2d; --k-mist: #e1edd3; --k-gold: #d7a615; position: relative; overflow: hidden; color: #fff; background: #3f6b3a; padding: clamp(40px, 6vw, 80px) 0 clamp(120px, 14vw, 170px); text-align: center; border-top: 3px solid var(--k-dark); border-bottom: 5px solid var(--k-dark); }
.kikker-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.kikker-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24, 79, 45, .15), rgba(24, 79, 45, .35)); }
.kikker-inner { position: relative; z-index: 1; max-width: 960px; }
.kikker-heading { display: block; width: min(460px, 82%); height: auto; margin: 0 auto clamp(20px, 3vw, 32px); filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .25)); }
.kikker-video { border: 6px solid var(--k-gold); border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(10, 40, 20, .45); }
.kikker-video .yt-play { color: var(--k-dark); }
.kikker-text { max-width: 760px; margin: clamp(22px, 3vw, 32px) auto 12px; font-size: 1.08rem; line-height: 1.7; text-shadow: 0 1px 12px rgba(10, 40, 20, .55); }
.kikker-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 28px; margin: 0 0 28px; }
.kikker-links a { color: #fff3c4; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(255, 243, 196, .5); }
.kikker-links a:hover { color: #fff; border-color: #fff; }
.kikker-links .icon { width: 15px; height: 15px; }
.muted-on-dark { opacity: .75; font-weight: 400; }
.kikker-buy { display: inline-block; max-width: 100%; background: rgba(225, 237, 211, .95); color: var(--k-dark); border: 2px solid var(--k-dark); border-radius: 18px; padding: 18px clamp(16px, 3vw, 28px) 20px; box-shadow: 0 16px 40px rgba(10, 40, 20, .3); }
.kikker-buy h3 { font-size: 1.1rem; margin: 0 0 12px; color: var(--k-dark); }
.kikker-buy-groups { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; }
.kikker-buy-group p { margin: 0 0 8px; font-size: .9rem; }
.kikker-buy-group div { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.kikker-buy-group a { background: var(--k-dark); color: #fff; text-decoration: none; font-weight: 600; font-size: .88rem; padding: 8px 14px; border-radius: 999px; transition: background .2s, transform .2s var(--ease); }
.kikker-buy-group a:hover { background: #0f3a20; transform: translateY(-1px); }
.kikker-frog { position: absolute; bottom: 0; width: clamp(110px, 15vw, 210px); height: auto; z-index: 1; pointer-events: none; }
.kikker-frog-1 { left: clamp(4px, 3vw, 48px); }
.kikker-frog-2 { right: clamp(4px, 3vw, 48px); }

/* ============ SHORTS ============ */
.shorts-row { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(170px, 20vw, 230px); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px max(var(--gutter), calc((100vw - var(--container)) / 2)) 16px; scroll-padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2)); scrollbar-width: thin; }
.shorts-row.few { justify-content: center; }
@media (max-width: 1000px) { .shorts-row.few { justify-content: start; } } /* centred content wider than the screen cannot be scrolled to its first card */
.shorts-section { padding-bottom: clamp(16px, 3vw, 40px); }
.short-card { font: inherit; position: relative; aspect-ratio: 9 / 16; border: 0; padding: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--plum-deep); cursor: pointer; scroll-snap-align: start; box-shadow: var(--shadow); text-align: left; }
.short-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.short-card:hover img { transform: scale(1.04); }
.short-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(20, 12, 16, .85)); }
.short-card .yt-play { width: 56px; height: 56px; margin: -28px 0 0 -28px; z-index: 1; }
.short-card .yt-play .icon { width: 22px; height: 22px; margin-left: 3px; }
.short-title { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 1; color: #fff; font-weight: 600; font-size: .92rem; line-height: 1.35; }
.short-card:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }
.video-dialog { border: 0; padding: 0; background: transparent; max-width: none; max-height: none; overflow: visible; }
.video-dialog::backdrop { background: rgba(20, 12, 16, .82); backdrop-filter: blur(4px); }
.video-dialog-frame { width: min(420px, 90vw, calc((100vh - 80px) * 9 / 16)); aspect-ratio: 9 / 16; border-radius: var(--radius-lg); overflow: hidden; background: #000; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.video-dialog-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-dialog-close { position: absolute; top: -18px; right: -18px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 0; background: #fff; color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow); }
@media (max-width: 520px) { .video-dialog-close { top: -54px; right: 0; } }

/* ============ MOMENTS: slowly moving photo strip ============ */
.moments { padding: clamp(48px, 7vw, 96px) 0; overflow: hidden; }
.marquee { overflow: hidden; }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: f2-marquee 90s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: clamp(180px, 22vw, 290px); width: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); background: var(--paper-2); flex: none; }
.marquee-track img:nth-child(3n+2) { aspect-ratio: 4 / 5; }
@keyframes f2-marquee { to { transform: translateX(calc(-50% - 7px)); } }
@media (prefers-reduced-motion: reduce) { .marquee:not(.is-draggable) { overflow-x: auto; } .marquee-track { animation: none; } }
.marquee.is-draggable { cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; } /* horizontal gestures are ours, vertical ones still scroll the page */
.marquee.is-dragging { cursor: grabbing; }
.marquee.is-draggable .marquee-track { will-change: transform; }

/* ============ BROCHURES ============ */
.brochure-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: clamp(20px, 3vw, 32px); }
.brochure { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s var(--ease); }
.brochure:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.brochure-cover { display: block; background: var(--paper-2); aspect-ratio: 4 / 3; overflow: hidden; }
.brochure-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.brochure-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.brochure-body h2 { font-size: 1.3rem; margin: 0; }
.brochure-body .actions { margin-top: auto; }

@media print { .site-header, .site-footer, .admin-bar, .mobile-cta, .checkout-mobile-bar { display: none !important; } body { background: #fff; } }
.choice.static .tick { background: var(--plum); border-color: var(--plum); }
.choice.static .tick .icon { opacity: 1; }
.testimonials { columns: 3 300px; column-gap: 24px; }
.testimonial { break-inside: avoid; margin: 0 0 24px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.testimonial .icon { width: 26px; height: 26px; color: var(--coral); margin-bottom: 10px; }
.testimonial blockquote { margin: 0 0 14px; font-family: var(--font-display); font-size: 1.1rem; line-height: 1.5; color: var(--ink); }
.testimonial figcaption { font-size: .9rem; color: var(--ink-3); }
.lead .prose { font-size: inherit; color: inherit; }
.lead .prose p[style] { text-align: left !important; }
.choice.pill { grid-template-columns: auto 1fr; padding: 12px 14px; }
.choice.pill .choice-sub { font-size: .92rem; color: var(--ink-2); font-weight: 500; }
.choice.pill.none { background: transparent; border-style: dashed; }
.choice.pill.none .choice-title { color: var(--ink-3); font-weight: 400; }
.choice.pill.none:has(input:checked) { border-color: var(--line-strong); background: transparent; box-shadow: none; }
.choice.pill.none:has(input:checked) .tick { background: var(--ink-3); border-color: var(--ink-3); }
.price-pills { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice-title { overflow-wrap: anywhere; }
@media (max-width: 640px) { .price-pills { grid-template-columns: repeat(2, minmax(0, 1fr)); } .choice.pill.none { grid-column: span 2; } .day-block { padding: 12px; } }
.day-block:has(.pill:not(.none) input:checked) { border-color: var(--plum); background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 3vw, 32px); }
.feature { padding: clamp(22px, 3vw, 36px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.feature h2 { font-size: clamp(1.35rem, 1.1rem + .8vw, 1.8rem); margin-bottom: .6em; }
.feature .prose { font-size: 1rem; color: var(--ink-2); }
.feature:first-child:nth-last-child(odd) { grid-column: span 2; }
@media (max-width: 760px) { .feature-grid { grid-template-columns: minmax(0, 1fr); } .feature:first-child:nth-last-child(odd) { grid-column: auto; } }
.offer-meta span { display: inline-flex; align-items: center; gap: 6px; }
.offer-meta .icon { margin-right: 0; }
@media (max-width: 700px) { .admin-bar .admin-bar-edit { display: none; } .admin-bar { gap: 12px; } }
.step, .summary, .form-card { min-width: 0; }
.side-card, .order-card { overflow-wrap: anywhere; }
@media (max-width: 520px) { .order-card { grid-template-columns: auto minmax(0, 1fr); } .order-card > div:last-child { grid-column: 1 / -1; text-align: left !important; display: flex; gap: 10px; align-items: center; } .order-card > div:last-child br { display: none; } }
