@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Dancing+Script:wght@600;700&family=Nunito+Sans:wght@400;500;600;700;800&display=swap");

* { box-sizing: border-box; }
:root {
    --bg: #e8f3eb;
    --bg-soft: #edf6ef;
    --bg-tint: #f1f8f3;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-soft: rgba(250, 253, 250, 0.78);
    --text: #36463b;
    --heading: #324036;
    --muted: #6d786f;
    --line: #dbe4d8;
    --line-strong: #c7d5c3;
    --accent: #86a88b;
    --accent-dark: #6d9274;
    --accent-soft: rgba(232, 242, 233, 0.92);
    --success: #edf5ed;
    --error: #f7e3e3;
    --shadow: 0 18px 45px rgba(96, 116, 99, 0.08);
    --shadow-soft: 0 10px 24px rgba(96, 116, 99, 0.05);
    --radius: 28px;
}
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
    background-color: #e8f3eb;
    background-image:
        linear-gradient(rgba(239, 247, 241, 0.72), rgba(239, 247, 241, 0.72)),
        url("../images/bg-cloud-soft.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 10%, rgba(176, 220, 190, 0.34), transparent 24%),
        radial-gradient(circle at 82% 22%, rgba(198, 231, 208, 0.28), transparent 20%),
        radial-gradient(circle at 30% 78%, rgba(174, 216, 186, 0.24), transparent 26%),
        radial-gradient(circle at 74% 74%, rgba(207, 236, 215, 0.24), transparent 22%);
    opacity: 0.85;
    z-index: 0;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; transition: .2s ease; }
a:hover { color: var(--text); }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
    font-family: "Bree Serif", Georgia, serif;
    color: var(--heading);
    line-height: 1.16;
    letter-spacing: .01em;
    margin-top: 0;
}
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 2rem)); margin: 0 auto; }
.center { text-align: center; }

.site-header {
    position: sticky; top: 0; z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(241, 247, 242, 0.88);
    border-bottom: 1px solid rgba(219, 228, 216, 0.92);
}
.nav-wrap {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1rem 0;
}
.brand { display: flex; align-items: center; gap: .95rem; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark {
    width: 68px; height: 68px; border-radius: 20px;
    display: grid; place-items: center;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    flex-shrink: 0;
}
.brand-mark img {
    width: 100%; height: 100%; object-fit: cover;
}
.brand strong {
    display: block;
    font-family: "Bree Serif", Georgia, serif;
    font-size: 1.6rem;
    color: var(--heading);
}
.brand small { display: block; color: var(--muted); font-size: .98rem; margin-top: .15rem; }
.site-nav { display: flex; align-items: center; gap: 1.35rem; flex-wrap: wrap; }
.site-nav a {
    color: var(--muted);
    font-weight: 700;
    padding: .65rem .2rem;
    border-radius: 999px;
}
.site-nav a:hover { color: var(--heading); }
.site-nav a.button { padding: .72rem 1.05rem; }
.site-nav a.button.active,
.site-nav a.button.active:hover {
    color: #fff;
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}
.site-nav a.active:not(.button) {
    color: #fff;
    background: var(--accent-dark);
    padding: .65rem 1rem;
    box-shadow: var(--shadow-soft);
}
.site-nav a.active:not(.button):hover {
    color: #fff;
}

.button, button, input[type="submit"] {
    appearance: none; border: 1px solid transparent; cursor: pointer;
    background: var(--accent-dark); color: #fff;
    padding: .95rem 1.35rem; border-radius: 999px;
    box-shadow: var(--shadow-soft);
    font: 700 1rem "Nunito Sans", Arial, sans-serif;
    transition: .2s ease;
}
.button:hover, button:hover, input[type="submit"]:hover {
    background: #537d5b;
    color: #fff;
    transform: translateY(-1px);
}
.button-secondary {
    background: var(--surface); color: var(--accent-dark);
    border: 1px solid var(--line-strong); box-shadow: none;
}
.button-secondary:hover {
    background: var(--accent-soft);
    color: var(--heading);
}
.button-small { padding: .72rem 1.05rem; font-size: .95rem; }
.button-link {
    background: none; border: 0; padding: 0; color: var(--accent-dark);
    box-shadow: none; cursor: pointer; font: inherit;
}

.hero, .page-hero { padding: 4.6rem 0 2.4rem; }
.hero-grid, .split, .cards-2, .cards-3, .footer-grid {
    display: grid; gap: 1.6rem;
}
.hero-grid, .split { grid-template-columns: 1.08fr .92fr; align-items: center; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.footer-grid { grid-template-columns: 1.4fr .8fr .8fr; }
.hero-copy h1, .page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.02; margin: .5rem 0 1rem;
}
.hero-copy { max-width: 640px; }
.lead, .hero-copy p {
    font-size: 1.18rem;
    color: var(--muted);
}
.eyebrow {
    display: inline-block;
    padding: .5rem .95rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border: 1px solid var(--line);
    font-size: .95rem;
    font-weight: 700;
}
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.5rem; }

.hero-card, .info-card, .product-card, .article-card, .form-card, .panel-card, .stat-card, .map-card, .cta-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hero-card {
    overflow: hidden;
    min-height: 470px;
    background: linear-gradient(180deg, #fff, #faf7f2);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.section { padding: 2rem 0 4.5rem; }
.soft {
    background: linear-gradient(180deg, rgba(250, 247, 242, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
    border-top: 1px solid rgba(217, 231, 220, 0.65);
    border-bottom: 1px solid rgba(217, 231, 220, 0.65);
}
.info-card, .article-card, .form-card, .panel-card, .stat-card { padding: 1.7rem; }
.info-card {
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf6 100%);
}
.cta-box {
    padding: 2.2rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #faf6f1 100%);
}
.text-link { font-weight: 800; }

.gallery-grid, .product-grid {
    display: grid; gap: 1rem;
}
.gallery-grid { grid-template-columns: repeat(2, 1fr); }
.gallery-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}
.gallery-grid-home .gallery-item {
    min-height: 250px;
}
.gallery-grid-home .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-item, .placeholder-image {
    background: linear-gradient(135deg, #fbf8f3, #f3ede5);
    border: 1px solid var(--line);
    border-radius: 24px; overflow: hidden; min-height: 220px;
    display: grid; place-items: center; color: var(--muted);
    box-shadow: var(--shadow-soft);
}
.gallery-item img, .product-card img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-image.compact { min-height: 140px; }

.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-card > img, .product-card .placeholder-image { height: 240px; }
.product-card-body { padding: 1.25rem; }
.product-card h3 { margin-bottom: .45rem; font-size: 1.45rem; }
.price { font-weight: 800; font-size: 1.1rem; color: var(--accent-dark); }
.product-meta { display: flex; justify-content: space-between; align-items: center; gap: .75rem; margin: 1rem 0; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
label { display: grid; gap: .5rem; font-weight: 700; color: var(--heading); }
input, select, textarea {
    width: 100%;
    padding: .92rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    background: #fff;
    font: inherit;
    color: var(--text);
    transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(134, 168, 139, 0.14);
}
textarea { resize: vertical; }

.alert {
    border-radius: 18px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    border: 1px solid var(--line);
}
.alert-success { background: var(--success); }
.alert-error { background: var(--error); }
.muted { color: var(--muted); }

.site-footer {
    padding: 3rem 0 2rem;
    background: #fdfaf6;
    border-top: 1px solid var(--line);
}
.site-footer h3, .site-footer h4 { margin-bottom: .7rem; }
.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 1.5rem;
    padding-top: 1rem;
    color: var(--muted);
}

#map {
    height: 430px;
    border-radius: 24px;
    overflow: hidden;
}
.map-card { padding: 1rem; }
.find-grid {
    display: grid;
    gap: 1.4rem;
}
.find-map-card {
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.find-map-card #map {
    height: 520px;
}
.find-info-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 1.4rem;
}

.login-page, .dashboard-page {
    background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
    min-height: 100vh;
}
.login-card {
    width: min(520px, calc(100% - 2rem));
    margin: 6rem auto;
    padding: 2rem;
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.dash-nav {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 10;
}
.dash-nav-links {
    display: flex; gap: 1rem; flex-wrap: wrap;
}
.dashboard-wrap {
    width: min(1200px, calc(100% - 2rem));
    margin: 2rem auto 3rem;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem;
}
.stat-card {
    padding: 1.5rem;
    display: grid; gap: .5rem;
}
.stat-card strong { font-size: 2rem; font-family: "Bree Serif", Georgia, serif; }
.table-wrap {
    overflow: auto;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--surface);
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}
th, td {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
th { color: var(--heading); background: #faf7f2; }
.table-actions {
    display: flex;
    gap: .75rem;
    align-items: center;
}
.checkbox-row {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    align-items: center;
    font-weight: 500;
}
.image-list {
    display: grid;
    gap: 1rem;
}
.image-list-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: .8rem;
    border-radius: 18px;
    background: #fbf8f4;
    border: 1px solid var(--line);
}
.image-list-item img {
    width: 100px; height: 76px; object-fit: cover; border-radius: 14px;
}
.section-heading { margin-bottom: 1.4rem; }

@media (max-width: 900px) {
    .hero-grid, .split, .cards-2, .cards-3, .footer-grid, .product-grid, .stats-grid, .form-grid, .find-info-grid {
        grid-template-columns: 1fr;
    }
    .site-nav, .nav-wrap, .cta-box, .dash-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .brand strong { font-size: 1.35rem; }
    .brand-mark { width: 60px; height: 60px; }
    .hero, .page-hero { padding-top: 4rem; }
}


.find-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.25rem; }


.hero-home {
    padding-top: 5.2rem;
}
.hero-grid-home {
    grid-template-columns: 1.02fr .98fr;
    align-items: stretch;
    gap: 2rem;
}
.hero-showcase {
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    gap: 1rem;
}
.hero-feature-card,
.hero-mini-card,
.activity-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}
.hero-feature-main {
    overflow: hidden;
    min-height: 540px;
    background: linear-gradient(180deg, #fff, #faf7f2);
}
.hero-feature-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-feature-stack {
    display: grid;
    gap: 1rem;
}
.hero-mini-card {
    padding: 1.4rem;
}
.logo-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 1rem;
    align-items: center;
}
.logo-card img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    padding: .55rem;
}
.mini-label {
    display: inline-block;
    margin-bottom: .4rem;
    color: var(--accent-dark);
    font-weight: 800;
    font-size: .9rem;
}
.hero-mini-card h3 {
    margin-bottom: .4rem;
    font-size: 1.35rem;
}
.activities-section {
    padding-top: 3.2rem;
}
.section-heading-wide {
    max-width: 760px;
    margin-bottom: 1.8rem;
}
.compact-lead {
    max-width: 680px;
}
.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.activity-card {
    padding: 1.45rem;
    min-height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf6 100%);
    display: flex;
    flex-direction: column;
}
.activity-icon,
.activity-logo-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    border: 1px solid var(--line);
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.activity-icon {
    font-size: 1.7rem;
}
.activity-card h3 {
    font-size: 1.3rem;
    margin-bottom: .6rem;
    min-height: 3rem;
}
.activity-card p {
    margin: 0;
}
.activity-logo-wrap {
    background: #fff;
    padding: .75rem;
}
.activity-logo-wrap img {
    max-height: 34px;
    width: auto;
    object-fit: contain;
}
.story-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 2rem;
    align-items: start;
}
.story-copy {
    padding-top: .8rem;
}
.gallery-grid-home .gallery-item:nth-child(1),
.gallery-grid-home .gallery-item:nth-child(4) {
    min-height: 280px;
}
.gallery-grid-home .gallery-item:nth-child(2),
.gallery-grid-home .gallery-item:nth-child(3) {
    min-height: 280px;
}
.site-nav a.active:not(.button),
.site-nav a.active:not(.button):hover {
    color: #fff;
}
@media (max-width: 1100px) {
    .hero-grid-home,
    .story-grid,
    .activity-grid,
    .hero-showcase {
        grid-template-columns: 1fr 1fr;
    }
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .hero-grid-home,
    .hero-showcase,
    .story-grid,
    .activity-grid,
    .logo-card {
        grid-template-columns: 1fr;
    }
    .hero-feature-main {
        min-height: 360px;
    }
    .gallery-grid-home .gallery-item:nth-child(1) {
        grid-row: auto;
        min-height: 280px;
    }
    .site-nav {
        width: 100%;
        gap: .35rem;
    }
    .site-nav a {
        padding: .55rem .85rem;
    }
}


/* Homepage refinement v7 */
.hero-grid-home-simple {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    align-items: center;
    gap: 2.4rem;
}
.hero-visual {
    min-width: 0;
}
.hero-feature-main-simple {
    min-height: 620px;
}
.hero-highlights {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr);
    max-width: 560px;
    gap: 1rem;
    margin-top: 1.8rem;
}
.highlight-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 1.35rem 1.5rem;
    min-height: 0;
}
.highlight-card h3 {
    margin-bottom: .45rem;
    font-size: 1.3rem;
}
.highlight-card-logo {
    display: grid;
    grid-template-columns: 84px minmax(0,1fr);
    gap: 1rem;
    align-items: center;
}
.highlight-logo-wrap {
    width: 84px;
    height: 84px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: #fff;
    padding: .65rem;
}
.highlight-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 1100px) {
    .hero-grid-home-simple {
        grid-template-columns: 1fr;
    }
    .hero-feature-main-simple {
        min-height: 460px;
    }
}
@media (max-width: 700px) {
    .hero-highlights,
    .highlight-card-logo {
        grid-template-columns: 1fr;
        max-width: none;
    }
    .highlight-logo-wrap {
        width: 72px;
        height: 72px;
    }
}


/* Over ons page */
.about-page-hero {
    padding-bottom: 1.8rem;
}
.about-intro-section {
    padding-top: .5rem;
    padding-bottom: 2rem;
}
.about-intro-grid,
.about-content-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 1.6rem;
    align-items: stretch;
}
.about-intro-card,
.about-story-card {
    padding: 2rem;
}
.about-intro-card h2,
.about-story-card h2 {
    margin-bottom: .8rem;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.about-hero-image {
    overflow: hidden;
    padding: 0;
    min-height: 100%;
}
.about-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}
.about-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.4rem;
}
.about-pill-list span {
    display: inline-flex;
    align-items: center;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid var(--line);
    color: var(--accent-dark);
    font-weight: 700;
    font-size: .95rem;
}
.about-story-card p + p {
    margin-top: 1rem;
}
.about-side-stack {
    display: grid;
    gap: 1rem;
}
.about-side-card {
    padding: 1.6rem;
}
.about-side-card h3 {
    font-size: 1.45rem;
    margin-bottom: .7rem;
}
.about-check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: .75rem;
}
.about-check-list li {
    position: relative;
    padding-left: 1.55rem;
}
.about-check-list li::before {
    content: "•";
    position: absolute;
    left: .35rem;
    top: -.05rem;
    color: var(--accent-dark);
    font-weight: 800;
}
.soft-note {
    background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
}
.about-gallery-grid {
    grid-template-columns: 1.15fr .85fr .85fr;
    grid-auto-rows: 240px;
}
.about-gallery-item-large {
    grid-row: span 2;
}
.about-gallery-grid .about-gallery-item {
    min-height: 100%;
}
.about-gallery-grid .about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1000px) {
    .about-intro-grid,
    .about-content-grid,
    .about-gallery-grid {
        grid-template-columns: 1fr;
    }
    .about-gallery-grid {
        grid-auto-rows: 260px;
    }
    .about-gallery-item-large {
        grid-row: span 1;
    }
}


/* Over ons v14: teamfoto rechtsboven */
.about-content-grid-topphoto {
    align-items: start;
}
.about-side-photo {
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100%;
}
.about-side-photo img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}
.about-gallery-grid-simple {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
}
.about-gallery-grid-simple .about-gallery-item {
    min-height: 100%;
}
@media (max-width: 1000px) {
    .about-gallery-grid-simple {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .about-gallery-grid-simple {
        grid-template-columns: 1fr;
    }
}


/* Homepage extra sfeerbeelden */
.home-detail-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.home-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr .95fr .95fr;
    gap: 1.15rem;
    align-items: stretch;
}
.home-detail-card,
.home-showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    background: var(--surface);
    margin: 0;
}
.home-detail-card {
    min-height: 290px;
}
.home-detail-card:first-child {
    min-height: 360px;
}
.home-detail-card img,
.home-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-detail-card figcaption,
.home-showcase-item figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: .8rem .95rem;
    border-radius: 18px;
    background: rgba(253, 252, 249, 0.9);
    border: 1px solid rgba(228, 221, 211, 0.9);
    color: var(--heading);
    font-weight: 800;
    backdrop-filter: blur(8px);
}
.home-showcase-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.home-showcase-item {
    min-height: 245px;
}
.home-showcase-item figcaption {
    display: grid;
    gap: .15rem;
}
.home-showcase-item figcaption span {
    color: var(--accent-dark);
    font-size: .88rem;
    font-weight: 800;
}
.home-showcase-item figcaption strong {
    font-family: "Bree Serif", Georgia, serif;
    font-size: 1.15rem;
}
.story-grid-home-showcase {
    align-items: center;
}
@media (max-width: 900px) {
    .home-detail-grid,
    .home-showcase-gallery {
        grid-template-columns: 1fr;
    }
    .home-detail-card,
    .home-detail-card:first-child,
    .home-showcase-item {
        min-height: 280px;
    }
}


/* Homepage showcase layout improvement v17 */
.home-showcase-section {
    padding-top: 2.5rem;
}
.section-heading-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-heading-centered .compact-lead {
    margin-left: auto;
    margin-right: auto;
}
.home-showcase-heading {
    margin-bottom: 2rem;
}
.home-showcase-heading .text-link {
    display: inline-block;
    margin-top: .4rem;
}
.home-showcase-gallery-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}
.home-showcase-gallery-wide .home-showcase-item {
    min-height: 340px;
}
@media (max-width: 900px) {
    .home-showcase-gallery-wide {
        grid-template-columns: 1fr;
    }
    .home-showcase-gallery-wide .home-showcase-item {
        min-height: 280px;
    }
}


.site-header {
    background: rgba(243, 248, 242, 0.90);
}
.hero-card,
.card,
.product-card,
.info-panel,
.order-form,
.login-card,
.dashboard-card,
.gallery-item figcaption,
.about-side-card,
.about-side-photo,
.content-card,
.highlight-card,
.feature-card,
.contact-card,
.footer-grid {
    backdrop-filter: blur(4px);
}

body > * { position: relative; z-index: 1; }


/* Homepage detail block centered */
.home-detail-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-detail-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.home-detail-heading .compact-lead {
    margin-left: auto;
    margin-right: auto;
}
.home-detail-grid {
    width: min(100%, 1160px);
    margin-left: auto;
    margin-right: auto;
}

/* Responsive verbeteringen mobiel/tablet v24 */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
body > * {
    position: relative;
    z-index: 1;
}
.container,
.narrow,
.dashboard-wrap {
    max-width: calc(100% - 2rem);
}
.button,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 1180px) {
    .container { width: min(1040px, calc(100% - 2rem)); }
    .hero-grid-home-simple {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr);
        gap: 2rem;
    }
    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.6rem, 5.8vw, 4rem);
    }
    .home-detail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .home-showcase-gallery-wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    body {
        background-attachment: scroll;
        background-size: auto 1200px;
    }
    .site-header {
        position: sticky;
    }
    .nav-wrap {
        flex-wrap: wrap;
        gap: .75rem;
    }
    .brand-mark {
        width: 58px;
        height: 58px;
        border-radius: 17px;
    }
    .brand strong {
        font-size: 1.35rem;
    }
    .brand small {
        font-size: .9rem;
    }
    .site-nav {
        gap: .75rem;
    }
    .site-nav a {
        padding: .55rem .15rem;
        font-size: .95rem;
    }
    .site-nav a.active:not(.button) {
        padding: .55rem .9rem;
    }
    .hero,
    .page-hero {
        padding: 3.6rem 0 2rem;
    }
    .hero-grid-home-simple,
    .hero-grid-home,
    .hero-grid,
    .split,
    .story-grid,
    .about-content-grid,
    .find-info-grid,
    .cta-box {
        grid-template-columns: 1fr !important;
    }
    .hero-copy {
        max-width: 780px;
    }
    .hero-feature-main-simple,
    .hero-feature-main {
        min-height: 0;
        aspect-ratio: 4 / 3;
        max-height: 620px;
    }
    .hero-feature-main-simple img,
    .hero-feature-main img {
        object-position: center center;
    }
    .hero-highlights {
        max-width: 720px;
    }
    .activity-grid,
    .product-grid,
    .cards-3,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .cards-2,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr !important;
    }
    .home-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-detail-card:first-child {
        grid-column: 1 / -1;
    }
    .home-showcase-gallery-wide,
    .home-showcase-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-gallery-grid,
    .about-gallery-grid-simple,
    .gallery-grid-home {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .about-side-photo img {
        min-height: 300px;
        max-height: 460px;
    }
    .find-map-card #map,
    #map {
        height: 430px;
    }
    .site-footer {
        padding: 2.5rem 0 1.5rem;
    }
}

@media (max-width: 760px) {
    :root {
        --radius: 22px;
    }
    .container,
    .narrow,
    .dashboard-wrap {
        width: min(100% - 1.25rem, 680px);
        max-width: min(100% - 1.25rem, 680px);
    }
    .site-header {
        position: sticky;
        top: 0;
    }
    .nav-wrap {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: .75rem 0 .65rem;
        gap: .65rem;
    }
    .brand {
        justify-content: center;
        gap: .7rem;
        text-align: left;
    }
    .brand-mark {
        width: 52px;
        height: 52px;
        border-radius: 15px;
    }
    .brand strong {
        font-size: 1.22rem;
        line-height: 1.05;
    }
    .brand small {
        font-size: .82rem;
        line-height: 1.25;
    }
    .site-nav {
        width: 100%;
        justify-content: center;
        gap: .35rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: .1rem .2rem .2rem;
        scrollbar-width: none;
        flex-wrap: nowrap;
    }
    .site-nav::-webkit-scrollbar { display: none; }
    .site-nav a {
        flex: 0 0 auto;
        font-size: .88rem;
        padding: .48rem .65rem;
        line-height: 1;
    }
    .site-nav a.active:not(.button) {
        padding: .58rem .85rem;
    }

    .hero,
    .page-hero {
        padding: 2.6rem 0 1.6rem;
    }
    .hero-home {
        padding-top: 2.7rem;
    }
    .hero-copy,
    .page-hero .container,
    .page-hero .narrow,
    .section-heading,
    .section-heading-wide,
    .home-detail-heading,
    .home-showcase-heading {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2rem, 12vw, 3rem);
        line-height: 1.05;
    }
    .hero-copy p,
    .lead {
        font-size: 1rem;
        line-height: 1.65;
    }
    .eyebrow {
        font-size: .82rem;
        padding: .42rem .75rem;
    }
    .hero-actions {
        justify-content: center;
        gap: .65rem;
    }
    .hero-actions .button,
    .cta-box .button,
    form .button,
    input[type="submit"] {
        width: 100%;
    }
    .button,
    button,
    input[type="submit"] {
        padding: .85rem 1rem;
        min-height: 46px;
    }
    .hero-feature-main-simple,
    .hero-feature-main {
        aspect-ratio: 3 / 4;
        max-height: 560px;
        border-radius: 24px;
    }
    .hero-feature-main-simple img,
    .hero-feature-main img {
        object-position: center top;
    }
    .highlight-card,
    .info-card,
    .article-card,
    .form-card,
    .panel-card,
    .stat-card,
    .cta-box,
    .find-map-card,
    .product-card,
    .activity-card {
        border-radius: 22px;
    }
    .highlight-card,
    .info-card,
    .article-card,
    .form-card,
    .panel-card,
    .stat-card,
    .about-side-card {
        padding: 1.25rem;
    }
    .section {
        padding: 2.25rem 0 3rem;
    }
    .activities-section {
        padding-top: 2.3rem;
    }
    .activity-grid,
    .product-grid,
    .cards-2,
    .cards-3,
    .stats-grid,
    .home-detail-grid,
    .home-showcase-gallery-wide,
    .home-showcase-gallery,
    .gallery-grid,
    .gallery-grid-home,
    .about-gallery-grid,
    .about-gallery-grid-simple,
    .find-info-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr !important;
    }
    .activity-card h3 {
        min-height: 0;
    }
    .activity-icon,
    .activity-logo-wrap {
        margin-left: auto;
        margin-right: auto;
    }
    .activity-card,
    .product-card-body,
    .about-side-card,
    .stat-card {
        text-align: center;
    }
    .activity-card p,
    .product-card p,
    .about-side-card p {
        text-align: center;
    }
    .home-detail-card,
    .home-detail-card:first-child,
    .home-showcase-item,
    .gallery-item,
    .about-gallery-grid .about-gallery-item,
    .about-gallery-grid-simple .about-gallery-item {
        min-height: 260px;
        aspect-ratio: 4 / 3;
    }
    .home-detail-card img,
    .home-showcase-item img,
    .gallery-item img {
        object-fit: cover;
    }
    .home-detail-card figcaption,
    .home-showcase-item figcaption {
        left: .75rem;
        right: .75rem;
        bottom: .75rem;
        padding: .75rem .85rem;
        border-radius: 16px;
        text-align: left;
    }
    .product-card > img,
    .product-card .placeholder-image {
        height: auto;
        aspect-ratio: 4 / 3;
    }
    .product-meta {
        flex-direction: column;
        align-items: stretch;
    }
    .product-meta .button,
    .product-card .button {
        width: 100%;
    }
    .about-side-photo img {
        min-height: 240px;
        max-height: 360px;
        object-position: center center;
    }
    .about-check-list {
        text-align: left;
    }
    .about-check-list li {
        text-align: left;
    }
    .find-map-card #map,
    #map {
        height: 340px;
        border-radius: 18px;
    }
    .find-actions .button,
    .find-actions a {
        width: 100%;
    }
    .cta-box {
        text-align: center;
        padding: 1.5rem;
    }
    .site-footer {
        text-align: center;
    }
    .footer-grid {
        gap: 1.25rem;
    }
    .footer-bottom {
        text-align: center;
    }
    .login-card {
        width: min(100% - 1.25rem, 520px);
        margin: 2.2rem auto;
        padding: 1.35rem;
    }
    .dash-nav {
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
        padding: .85rem;
    }
    .dash-nav-links {
        display: flex;
        gap: .45rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: .2rem;
    }
    .dash-nav-links a {
        flex: 0 0 auto;
        padding: .45rem .7rem;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: rgba(255,255,255,.72);
    }
    .dashboard-wrap {
        margin: 1.25rem auto 2rem;
    }
    .dashboard-wrap h1 {
        font-size: clamp(1.8rem, 9vw, 2.4rem);
    }
    .table-wrap {
        margin-left: calc((100vw - 100%) / -2);
        margin-right: calc((100vw - 100%) / -2);
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }
    table {
        min-width: 760px;
    }
    th, td {
        padding: .8rem;
        font-size: .92rem;
    }
    .image-list-item {
        grid-template-columns: 86px 1fr;
        align-items: start;
    }
    .image-list-item form {
        grid-column: 1 / -1;
    }
    .image-list-item img {
        width: 86px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .container,
    .narrow,
    .dashboard-wrap {
        width: min(100% - 1rem, 460px);
        max-width: min(100% - 1rem, 460px);
    }
    .brand {
        justify-content: flex-start;
        width: 100%;
    }
    .brand-mark {
        width: 48px;
        height: 48px;
    }
    .brand strong {
        font-size: 1.12rem;
    }
    .brand small {
        font-size: .78rem;
    }
    .site-nav {
        justify-content: flex-start;
    }
    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(1.95rem, 13vw, 2.65rem);
    }
    h2 {
        font-size: clamp(1.45rem, 8vw, 2rem);
    }
    h3 {
        font-size: clamp(1.18rem, 6vw, 1.45rem);
    }
    .hero-feature-main-simple,
    .hero-feature-main {
        aspect-ratio: 1 / 1.12;
        max-height: 470px;
    }
    .home-detail-card,
    .home-detail-card:first-child,
    .home-showcase-item,
    .gallery-item,
    .about-gallery-grid .about-gallery-item,
    .about-gallery-grid-simple .about-gallery-item {
        min-height: 230px;
        aspect-ratio: 1 / 1.05;
    }
    .product-card > img,
    .product-card .placeholder-image {
        aspect-ratio: 1 / .9;
    }
    .find-map-card #map,
    #map {
        height: 300px;
    }
    .site-footer {
        padding: 2rem 0 1.4rem;
    }
}

@media (hover: none) {
    .button:hover,
    button:hover,
    input[type="submit"]:hover {
        transform: none;
    }
}


/* Bestellen, verzenden en productslider */
.product-slider {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: linear-gradient(135deg, #fbf8f3, #eef6f0);
}
.product-slider-track {
    height: 100%;
    display: flex;
    transition: transform .28s ease;
}
.product-slide {
    min-width: 100%;
    height: 100%;
}
.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    border: 1px solid var(--line);
    color: var(--heading);
    box-shadow: var(--shadow-soft);
    font-size: 1.6rem;
    line-height: 1;
}
.slider-btn:hover {
    transform: translateY(-50%);
    background: #fff;
    color: var(--heading);
}
.slider-btn-prev { left: .75rem; }
.slider-btn-next { right: .75rem; }
.slider-count {
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    padding: .25rem .65rem;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--line);
    font-size: .85rem;
    font-weight: 800;
}
.product-delivery-badge {
    display: inline-flex;
    width: fit-content;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border: 1px solid var(--line);
    font-size: .9rem;
    font-weight: 800;
    margin-bottom: .8rem;
}
.option-fieldset {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
    margin: 0;
    display: grid;
    gap: .7rem;
}
.option-fieldset legend {
    padding: 0 .4rem;
    font-family: "Bree Serif", Georgia, serif;
    color: var(--heading);
}
.shipping-address,
.order-total-box {
    padding: 1.2rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.72);
}
.shipping-address h3,
.order-total-box h3 {
    margin-bottom: .7rem;
}
.nested-form-grid {
    margin-top: .8rem;
}
.admin-product-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: .8rem;
    margin-top: .8rem;
}
.admin-product-images figure {
    margin: 0;
    padding: .65rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.72);
}
.admin-product-images img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: .5rem;
}
.admin-images-block {
    margin-top: 1.4rem;
}
.find-hero .find-hero-inner {
    position: relative;
    overflow: visible;
}
.find-hero h1 {
    position: relative;
    z-index: 2;
}
.baarn-script-note {
    position: absolute;
    right: -260px;
    top: 1.25rem;
    width: 330px;
    transform: rotate(-8deg);
    font-family: "Dancing Script", "Brush Script MT", cursive;
    font-size: clamp(1.65rem, 2.15vw, 2.45rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--accent-dark);
    text-align: center;
    text-shadow: 0 2px 0 rgba(255,255,255,.7);
    z-index: 3;
}
.baarn-script-note span {
    display: inline-block;
    margin-top: .15rem;
    font-size: .82em;
}
.baarn-script-note::after {
    content: "";
    display: block;
    width: 135px;
    height: 1px;
    background: rgba(109, 146, 116, .45);
    margin: .35rem auto 0;
    transform: rotate(-2deg);
}
.baarn-script-note a {
    color: var(--heading);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

@media (max-width: 900px) {
    .product-slider {
        height: auto;
        aspect-ratio: 1 / .86;
    }
    .baarn-script-note {
        position: static;
        width: min(100%, 520px);
        margin: 1rem auto 0;
        text-align: center;
        transform: rotate(-3deg);
        font-size: clamp(1.55rem, 6vw, 2.15rem);
    }
}
@media (max-width: 560px) {
    .product-slider {
        aspect-ratio: 1 / .95;
    }
    .slider-btn {
        width: 34px;
        height: 34px;
    }
    .option-fieldset,
    .shipping-address,
    .order-total-box {
        padding: .9rem;
    }
}


@media (max-width: 1280px) {
    .baarn-script-note {
        right: -150px;
        width: 280px;
        top: 1.1rem;
        font-size: clamp(1.45rem, 2vw, 2rem);
    }
}
@media (max-width: 1050px) {
    .baarn-script-note {
        position: static;
        width: min(100%, 560px);
        margin: 1rem auto 0;
        text-align: center;
        transform: rotate(-3deg);
        font-size: clamp(1.55rem, 6vw, 2.15rem);
    }
}

/* Vind ons - sierlijke Uniek Baarn tip naast de titel */
.find-hero .find-title-wrap{
    position:relative !important;
    display:block !important;
}
.find-hero .find-title-wrap h1{
    position:relative !important;
    z-index:2 !important;
    max-width:720px !important;
}
.find-hero .find-title-wrap .baarn-script-note{
    position:absolute !important;
    left:calc(100% - 90px) !important;
    top:-18px !important;
    width:360px !important;
    transform:rotate(-8deg) !important;
    transform-origin:center center !important;
    font-family:"Dancing Script", "Brush Script MT", "Segoe Script", cursive !important;
    font-size:clamp(1.75rem, 2.15vw, 2.55rem) !important;
    font-weight:700 !important;
    line-height:1.05 !important;
    color:#5f8d68 !important;
    text-align:center !important;
    text-shadow:0 2px 0 rgba(255,255,255,.85) !important;
    z-index:5 !important;
}
.find-hero .find-title-wrap .baarn-script-note span{
    display:inline-block !important;
    margin-top:.18rem !important;
    font-size:.86em !important;
}
.find-hero .find-title-wrap .baarn-script-note a{
    color:#2f3f35 !important;
    text-decoration:underline !important;
    text-decoration-thickness:1px !important;
    text-underline-offset:5px !important;
}
.find-hero .find-title-wrap .baarn-script-note::after{
    content:"" !important;
    display:block !important;
    width:150px !important;
    height:1px !important;
    background:rgba(95,141,104,.45) !important;
    margin:.4rem auto 0 !important;
    transform:rotate(-2deg) !important;
}
@media (max-width:1200px){
    .find-hero .find-title-wrap .baarn-script-note{
        left:calc(100% - 170px) !important;
        top:-24px !important;
        width:310px !important;
        font-size:clamp(1.55rem, 2vw, 2.15rem) !important;
    }
}
@media (max-width:760px){
    .find-hero .find-title-wrap h1{
        max-width:none !important;
    }
    .find-hero .find-title-wrap .baarn-script-note{
        position:static !important;
        width:min(100%, 520px) !important;
        margin:1rem auto 0 !important;
        transform:rotate(-3deg) !important;
        font-size:clamp(1.55rem, 7vw, 2.15rem) !important;
    }
}


/* Fix productslider: toon altijd één foto per keer */
.product-card .product-slider {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
    overflow: hidden !important;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(135deg, #fbf8f3, #eef6f0);
}
.product-card .product-slider-track {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    height: 100% !important;
    transition: transform .28s ease !important;
    will-change: transform;
}
.product-card .product-slide {
    display: block !important;
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}
.product-card .product-slide img,
.product-card .product-slider img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}
.product-card .slider-btn,
.product-card .slider-count {
    z-index: 5 !important;
}
@media (max-width: 900px) {
    .product-card .product-slider {
        height: 260px !important;
        min-height: 260px !important;
        max-height: 260px !important;
    }
}
@media (max-width: 560px) {
    .product-card .product-slider {
        height: 235px !important;
        min-height: 235px !important;
        max-height: 235px !important;
    }
}

/* Productopties */
.product-options-preview {
    margin: .85rem 0;
    padding: .85rem 1rem;
    border: 1px solid var(--line, #dbe4d8);
    border-radius: 16px;
    background: rgba(255, 255, 255, .55);
}
.product-options-preview strong {
    display: block;
    margin-bottom: .45rem;
    color: var(--accent-dark, #375b40);
}
.product-options-preview div {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}
.product-options-preview span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .35rem .65rem;
    background: rgba(238, 246, 238, .9);
    border: 1px solid var(--line, #dbe4d8);
    font-size: .9rem;
    font-weight: 700;
}
.product-option-select-row {
    padding: .95rem 1rem;
    border: 1px solid var(--line, #dbe4d8);
    border-radius: 16px;
    background: rgba(255, 255, 255, .52);
}
.product-option-select-row > span {
    display: block;
    font-weight: 800;
    margin-bottom: .45rem;
}
.product-option-select-row select {
    width: 100%;
}


/* SMTP instellingen */
.settings-section-title {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line, #dbe4d8);
}
.settings-section-title h2 {
    margin: 0 0 .35rem;
    font-size: 1.35rem;
}
.settings-section-title p {
    margin: 0;
    color: var(--muted, #66756b);
}
.checkbox-line {
    display: flex !important;
    align-items: center;
    gap: .65rem;
    padding: .85rem 1rem;
    border: 1px solid var(--line, #dbe4d8);
    border-radius: 16px;
    background: rgba(255, 255, 255, .55);
    font-weight: 800;
}
.checkbox-line input[type="checkbox"] {
    width: auto;
    min-width: 18px;
    height: 18px;
}
