:root {
    --primary-dark: #22005d;
    --primary: #3b0b8f;
    --primary-light: #6f35d5;
    --white: #ffffff;
    --text: #240061;
    --soft-bg: #f7f4ff;
    --shadow: 0 12px 30px rgba(34, 0, 93, .22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--soft-bg);
    color: var(--text);
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

main {
    background: transparent;
}

/* UI SYSTEM */
.section {
    padding: 70px 0;
}

.section-title {
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: clamp(32px, 4vw, 46px);
    color: var(--primary-dark);
}

.card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1ebff;
    color: var(--primary-dark);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
}

.empty-state {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.empty-state h2 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.empty-state p {
    color: #666;
}

/* HEADER */

.site-header {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: white;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,.18);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 26px;
    font-weight: 900;
}

.logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.logo-text strong,
.logo-text small {
    color: white;
}

.menu {
    margin-left: auto;
    display: flex;
    gap: 24px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 800;
    padding: 28px 0 22px;
    border-bottom: 3px solid transparent;
}

.menu a:hover,
.menu a.active {
    border-bottom-color: white;
}

.member-btn {
    color: white;
    text-decoration: none;
    border: 2px solid white;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 900;
    background: transparent;
}

.menu-toggle {
    display: none;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-outline {
    color: white;
    border: 2px solid white;
}

/* HERO */

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 20%, #ffffff 0%, #faf7ff 30%, transparent 45%),
        linear-gradient(135deg, #ffffff 0%, #f4edff 42%, #8d5bea 76%, #4b13b5 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 36%, rgba(255,255,255,.35) 36% 47%, transparent 47%),
        linear-gradient(135deg, transparent 0 43%, rgba(34,0,93,.10) 43% 100%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    z-index: 3;
}

.hero-content h1 {
    margin: 0 0 24px;
    font-size: clamp(58px, 5.5vw, 86px);
    line-height: .92;
    font-weight: 900;
    color: var(--primary-dark);
}

.hero-content p {
    margin-bottom: 28px;
    font-size: 20px;
    color: var(--primary-dark);
}

.hero-image {
    position: relative;
    height: 560px;
    overflow: visible;
}

.hero-image img {
    position: absolute;
    right: -500px;
    bottom: 80px;
    width: 1180px;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 25px 30px rgba(34,0,93,.25));
}
@media (max-width: 1000px) {
    .cards-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 55px 0 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .hero-image {
        height: 330px;
    }

    .hero-image img {
        right: 50%;
        bottom: 0;
        transform: translateX(50%);
        width: 760px;
    }
}

/* HOME CARDS */

.home-cards {
    padding: 34px 0 10px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.home-card h2 {
    padding: 20px;
    font-size: 26px;
    color: var(--text);
}

.home-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.home-card h2 i,
.card-header h2 i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    font-size: 20px;
}

.home-card-content {
    padding: 20px;
}

.home-card-content p {
    margin-bottom: 18px;
    font-weight: 700;
}

/* INFO GRID */

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 50px auto 80px;
    align-items: stretch;
}

.info-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.card-header {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 18px 24px;
}

.card-header h2 {
    font-size: 26px;
}

.info-card .btn {
    margin: 20px;
}

.cta-section {
    margin: 30px auto 90px;
    padding: 42px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 20%, rgba(255,255,255,.28), transparent 26%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow);
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 18px;
    opacity: .9;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-light {
    background: white;
    color: var(--primary-dark);
}

@media (max-width: 900px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }
}

/* AGENDA */

.agenda-list,
.news-list {
    padding: 20px;
}

.agenda-item,
.news-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #ececec;
}

.agenda-item:last-child,
.news-item:last-child {
    border: none;
}

.agenda-date,
.news-date {
    width: 65px;
    min-width: 65px;
    height: 65px;
    border-radius: 10px;
    background: #f1ebff;
    color: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 900;
    line-height: 1.2;
}

.agenda-date {
    flex-direction: column;
}

.agenda-date strong {
    font-size: 24px;
}

.agenda-date small {
    font-size: 12px;
    letter-spacing: 1px;
}

.agenda-item h3,
.news-item h3 {
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.agenda-item p,
.news-item p {
    color: #666;
}

/* SOCIALS */

.social-text {
    padding: 25px;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 25px 25px;
}

.social {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    text-decoration: none;
    color: white;
    text-align: center;
    padding: 22px 10px;
    transition: .25s;
}

.social span {
    display: block;
    font-size: 34px;
    margin-bottom: 10px;
}

.social:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,.2);
}

/* ===========================
   SPONSORS
=========================== */

.sponsors-section {
    margin: 20px 0 90px;
}

.section-heading {
    text-align: center;
    margin-bottom: 35px;
}

.section-heading h2 {
    font-size: 38px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-heading p {
    color: #666;
}

.sponsor-slider {
    overflow: hidden;
    background: white;
    padding: 28px 0;
    box-shadow: var(--shadow);
}

.sponsor-track {
    display: flex;
    width: max-content;
    animation: sponsorScroll 24s linear infinite;
}

.sponsor-slider:hover .sponsor-track {
    animation-play-state: paused;
}

.sponsor-logo {
    width: 220px;
    height: 110px;
    margin: 0 18px;
    border-radius: 16px;
    background: #f7f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo img {
    max-width: 160px;
    max-height: 75px;
}

@keyframes sponsorScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* TEAMS */
/* TEAMS OVERVIEW */

.team-category {
    margin-bottom: 55px;
}

.team-category:last-child {
    margin-bottom: 0;
}

.team-category h2 {
    font-size: 34px;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.team-category h2 i {
    color: var(--primary);
    margin-right: 10px;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    text-decoration: none;
    color: var(--primary-dark);
    transition: .25s;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.team-card-content {
    padding: 24px;
}

.team-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.team-card strong {
    color: var(--primary);
}

/* TEAM DETAIL */

.team-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 70px 0 0;
    color: white;
}

.team-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px 22px 0 0;
    display: block;
    box-shadow: var(--shadow);
}

.team-hero-content {
    padding: 35px 0 45px;
}

.team-hero-content h1 {
    font-size: clamp(44px, 5vw, 78px);
    line-height: 1;
}

.team-hero-content p {
    font-size: 22px;
    opacity: .9;
    margin-top: 12px;
}

.team-tabs {
    background: white;
    margin-top: -30px;
    margin-bottom: 80px;
    padding: 30px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.tabs-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.tab-btn {
    border: 0;
    background: #f1ebff;
    color: var(--primary-dark);
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

.tab-btn.active {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.team-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.team-card-list {
    padding: 22px;
    display: grid;
    gap: 16px;
}

.person-card,
.player-card {
    background: #f7f4ff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.person-card strong {
    display: block;
    margin-top: 12px;
    color: var(--primary-dark);
}

.person-card span,
.player-card p {
    color: #666;
}

.avatar {
    width: 58px;
    height: 58px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: grid;
    place-items: center;
    font-size: 24px;
}

.avatar.large {
    width: 78px;
    height: 78px;
    font-size: 34px;
}

.team-block-content {
    padding: 24px;
}

.team-block-content p {
    margin-bottom: 14px;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.player-card {
    position: relative;
}

.player-number {
    position: absolute;
    top: 14px;
    right: 14px;
    background: white;
    color: var(--primary-dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.player-card h3 {
    margin-top: 14px;
    color: var(--primary-dark);
}

@media (max-width: 900px) {
    .teams-grid,
    .team-info-grid,
    .players-grid {
        grid-template-columns: 1fr;
    }

    .team-hero img {
        height: 260px;
    }

    .team-tabs {
        padding: 20px;
    }
}

/* PAGE TEMPLATE */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 80px 0;
}

.page-hero h1 {
    font-size: clamp(42px, 5vw, 72px);
}

.page-content {
    background: white;
    margin-top: -35px;
    margin-bottom: 80px;
    padding: 45px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

.page-content h2 {
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.page-content p {
    margin-bottom: 18px;
}

/* ERRORS */
.error-page {
    padding: 120px 0;
    text-align: center;
}

.error-page h1 {
    font-size: 140px;
    color: var(--primary-dark);
    line-height: 1;
}

.error-page h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.error-page p {
    margin-bottom: 30px;
    color: #666;
}

/* FOOTER */

.footer {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: white;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.footer-col img {
    width: 90px;
    margin-bottom: 20px;
}

.footer h3 {
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

.footer p {
    line-height: 1.7;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,.15);
    font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .cards-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 50px 0 0;
    }
}

@media (max-width: 900px) {
    .menu,
    .member-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        background: none;
        border: 0;
        color: white;
        font-size: 34px;
        cursor: pointer;
    }

    .menu.open {
        display: flex;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        z-index: 20;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col img {
        margin: 0 auto 20px;
        display: block;
    }
}

.players-list {
    display: grid;
    gap: 12px;
}

.player-list-item {
    background: #f7f4ff;
    border-radius: 12px;
    padding: 16px 18px;
}

.player-list-item strong {
    display: block;
    color: var(--primary-dark);
}

.player-list-item span {
    color: #666;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.news-card-content {
    padding: 24px;
}

.news-card-content small {
    color: #777;
    font-weight: 800;
}

.news-card-content h2 {
    margin: 10px 0;
    color: var(--primary-dark);
}

.news-card-content p {
    color: #666;
    margin-bottom: 20px;
}

.news-detail-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 26px;
}

.news-detail-content {
    line-height: 1.8;
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.news-detail {
    max-width: 980px;
}

.news-meta {
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 22px;
}

.news-summary {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 28px;
}

.news-detail-image {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 28px;
}

.news-detail-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.agenda-page-list {
    display: grid;
    gap: 22px;
}

.agenda-page-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    background: #f7f4ff;
    border-radius: 18px;
    padding: 24px;
}

.agenda-page-date {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: grid;
    place-items: center;
    text-align: center;
}

.agenda-page-date strong {
    display: block;
    font-size: 34px;
    line-height: 1;
}

.agenda-page-date span {
    display: block;
    font-weight: 900;
    text-transform: uppercase;
}

.agenda-page-content h2 {
    margin: 12px 0 8px;
    color: var(--primary-dark);
}

.agenda-page-content p {
    color: #666;
    margin-bottom: 12px;
}

.agenda-type {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.agenda-type-wedstrijd {
    background: #f1ebff;
    color: var(--primary-dark);
}

.agenda-type-training {
    background: #e8fff1;
    color: #14783d;
}

.agenda-type-activiteit {
    background: #fff6dd;
    color: #9a6500;
}

.agenda-type-vergadering {
    background: #e8f1ff;
    color: #124d91;
}

.agenda-description {
    color: #555;
    line-height: 1.7;
}

@media (max-width: 700px) {
    .agenda-page-item {
        grid-template-columns: 1fr;
    }
}

.cms-page {
    max-width: 980px;
}

.cms-page-content {
    font-size: 18px;
    line-height: 1.8;
}

.cms-page-content p {
    margin-bottom: 20px;
}

.cms-page-content h2,
.cms-page-content h3 {
    color: var(--primary-dark);
    margin: 28px 0 14px;
}

.cms-page-content ul,
.cms-page-content ol {
    margin: 18px 0 22px 24px;
}

.cms-page-content a {
    color: var(--primary);
    font-weight: 900;
}

.hc-public-form {
    margin-top: 42px;
}

.hc-public-form-header h2 {
    font-size: 34px;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.hc-public-line {
    width: 90px;
    height: 4px;
    background: var(--primary);
    border-radius: 99px;
    margin-bottom: 34px;
}

.public-form-group {
    margin-bottom: 24px;
}

.public-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 900;
    color: var(--primary-dark);
}

.public-form-group label span {
    color: #e53935;
}

.public-input,
.public-textarea,
.public-select {
    width: 100%;
    border: 2px solid #e8ddff;
    border-radius: 16px;
    padding: 17px 20px;
    font-size: 16px;
    color: var(--primary-dark);
    background: #fff;
    box-sizing: border-box;
}

.public-textarea {
    min-height: 160px;
    resize: vertical;
}

.public-input:focus,
.public-textarea:focus,
.public-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(94, 44, 237, .14);
}

.public-checkbox {
    display: flex !important;
    align-items: center;
    gap: 12px;
}

.public-checkbox input {
    width: 18px;
    height: 18px;
}

.public-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    border: 0;
    border-radius: 14px;
    padding: 16px 30px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}

.public-submit:hover {
    background: var(--primary-dark);
}

.public-form-note {
    margin-top: 28px;
    color: #777;
    font-size: 14px;
}

.public-form-note i {
    color: var(--primary);
    margin-right: 6px;
}

.public-form-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 0 26px;
    padding: 18px 20px;
    border: 2px solid #e5d9ff;
    border-radius: 16px;
    background: #f7f4ff;
    color: var(--primary-dark);
    line-height: 1.7;
}

.public-form-notice > i {
    margin-top: 4px;
    color: var(--primary);
    font-size: 20px;
}

.builder-static-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
    background: #fff;
    color: var(--primary-dark);
    line-height: 1.6;
}

.builder-static-text i {
    margin-top: 4px;
    color: var(--primary);
}

.public-form-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px 20px;
    border: 2px solid #e5d9ff;
    border-radius: 16px;
    background: #f7f4ff;
    color: var(--primary-dark);
    line-height: 1.7;
}

.public-form-notice i {
    margin-top: 4px;
    color: var(--primary);
    font-size: 20px;
}

.association-hero {
    padding: 110px 0 90px;
    background:
        linear-gradient(
            135deg,
            rgba(38, 0, 107, 0.96),
            rgba(111, 45, 189, 0.92)
        );
    color: #fff;
}

.association-hero-content {
    max-width: 820px;
}

.association-hero h1 {
    margin: 12px 0 24px;
    font-size: clamp(40px, 7vw, 68px);
    line-height: 1.05;
}

.association-hero p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.94;
}

.association-section {
    padding: 90px 0;
}

.association-section-alt {
    background: #f8f5fd;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-heading h2 {
    margin: 8px 0 14px;
    color: var(--primary-dark);
    font-size: clamp(32px, 5vw, 46px);
}

.section-heading p {
    color: #6b6575;
    line-height: 1.7;
}

.eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.board-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.board-card,
.contact-card,
.document-card {
    border: 1px solid #eadff8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(38, 0, 107, 0.08);
}

.board-card {
    padding: 30px;
}

.board-icon,
.document-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: #f2ebff;
    color: var(--primary);
    font-size: 22px;
}

.board-card h3,
.contact-card h3,
.document-card h3 {
    margin: 0 0 8px;
    color: var(--primary-dark);
}

.board-card strong {
    display: block;
    margin-bottom: 8px;
}

.board-card a,
.contact-card a {
    color: var(--primary);
    text-decoration: none;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;
}

.contact-card > i {
    color: var(--primary);
    font-size: 25px;
}

.document-list {
    display: grid;
    gap: 18px;
}

.document-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 24px;
}

.document-icon {
    margin: 0;
}

.document-category {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.document-content p {
    margin: 8px 0 0;
    color: #6b6575;
    line-height: 1.6;
}

.document-download {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.empty-state {
    padding: 34px;
    border: 1px dashed #d9c8ef;
    border-radius: 18px;
    background: #faf8ff;
    color: #6b6575;
    text-align: center;
}

@media (max-width: 800px) {
    .board-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .document-card {
        grid-template-columns: auto 1fr;
    }

    .document-download {
        grid-column: 1 / -1;
        justify-content: center;
    }
}
.contact-hero {
    padding: 110px 0 90px;
    background:
        linear-gradient(
            135deg,
            rgba(38, 0, 107, 0.96),
            rgba(111, 45, 189, 0.92)
        );
    color: #fff;
}

.contact-hero-content {
    max-width: 760px;
}

.contact-hero h1 {
    margin: 12px 0 20px;
    font-size: clamp(40px, 7vw, 68px);
    line-height: 1.05;
}

.contact-hero p {
    max-width: 700px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.94;
}

.contact-section {
    padding: 90px 0;
}

.contact-section-alt {
    background: #f8f5fd;
}

.contact-location-grid {
    display: grid;
    gap: 28px;
}

.contact-location-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
    overflow: hidden;
    border: 1px solid #eadff8;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(38, 0, 107, 0.08);
}

.contact-location-content {
    padding: 34px;
}

.contact-location-icon,
.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: #f2ebff;
    color: var(--primary);
    font-size: 22px;
}

.contact-location-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-location-card h3,
.contact-card h3,
.contact-cta h2 {
    color: var(--primary-dark);
}

.contact-location-card h3 {
    margin: 0 0 14px;
    font-size: 28px;
}

.contact-location-card address {
    margin-bottom: 24px;
    color: #655f70;
    font-style: normal;
    line-height: 1.7;
}

.contact-route-button,
.contact-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 18px;
    border-radius: 13px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-route-button:hover,
.contact-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(111, 45, 189, 0.22);
}

.contact-location-map {
    min-height: 340px;
}

.contact-location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.contact-card {
    padding: 28px;
    border: 1px solid #eadff8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(38, 0, 107, 0.07);
}

.contact-card h3 {
    margin: 0 0 10px;
}

.contact-card p {
    margin: 0 0 14px;
    color: #6b6575;
    line-height: 1.65;
}

.contact-card a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.contact-cta {
    padding: 0 0 90px;
}

.contact-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 42px;
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            #f4edff,
            #ffffff
        );
    box-shadow: 0 20px 50px rgba(38, 0, 107, 0.08);
}

.contact-cta-card > div {
    max-width: 700px;
}

.contact-cta h2 {
    margin: 8px 0 12px;
    font-size: clamp(30px, 5vw, 44px);
}

.contact-cta p {
    margin: 0;
    color: #6b6575;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .contact-location-card {
        grid-template-columns: 1fr;
    }

    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 82px 0 68px;
    }

    .contact-section {
        padding: 68px 0;
    }

    .contact-location-content {
        padding: 26px;
    }

    .contact-location-map,
    .contact-location-map iframe {
        min-height: 280px;
    }

    .contact-cta-card {
        padding: 28px;
    }

    .contact-cta-button {
        width: 100%;
    }
}

.shop-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 255, 255, 0.16),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #26006b,
            #6f2dbd
        );
    color: #fff;
}

.shop-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    min-height: 340px;
}

.shop-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 28px 70px rgba(16, 0, 45, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.shop-hero-logo img {
    width: 190px;
    height: 190px;
    object-fit: contain;
}

.shop-hero-logo-caption {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
}

.shop-hero::after {
    position: absolute;
    right: -100px;
    bottom: -190px;
    width: 430px;
    height: 430px;
    border: 70px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.shop-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: center;
    gap: 70px;
}

.shop-hero-content {
    max-width: 790px;
}

.shop-hero h1 {
    max-width: 760px;
    margin: 12px 0 22px;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.shop-hero p {
    max-width: 700px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.94;
}

.shop-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.shop-primary-button,
.shop-secondary-button,
.shop-product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 14px;
    font-weight: 750;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.shop-primary-button {
    padding: 15px 21px;
    background: #fff;
    color: #4d148c;
    box-shadow: 0 12px 28px rgba(18, 0, 54, 0.22);
}

.shop-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 17px 34px rgba(18, 0, 54, 0.28);
}

.shop-secondary-button {
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.shop-secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.shop-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.shop-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 28px 70px rgba(16, 0, 45, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.shop-hero-logo img {
    display: block;
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.shop-hero-logo > i {
    font-size: 90px;
}

.shop-hero-badge {
    position: absolute;
    top: 16px;
    left: -10px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #fff;
    color: #4d148c;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 14px 35px rgba(18, 0, 54, 0.22);
}

.shop-benefits {
    position: relative;
    z-index: 2;
    margin-top: -38px;
}

.shop-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.shop-benefit-card {
    padding: 28px;
    border: 1px solid #eadff8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(38, 0, 107, 0.09);
}

.shop-benefit-icon,
.shop-information-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: #f2ebff;
    color: var(--primary);
    font-size: 22px;
}

.shop-benefit-card h2 {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: 20px;
}

.shop-benefit-card p {
    margin: 0;
    color: #6b6575;
    line-height: 1.65;
}

.shop-products {
    padding: 105px 0 90px;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.shop-product-card {
    overflow: hidden;
    border: 1px solid #eadff8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(38, 0, 107, 0.07);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.shop-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(38, 0, 107, 0.13);
}

.shop-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(
            145deg,
            #faf8ff,
            #f0e8fc
        );
}

.shop-product-image > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 22px;
    transition: transform 0.25s ease;
}

.shop-product-card:hover .shop-product-image > img {
    transform: scale(1.035);
}

.shop-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    height: 100%;
    color: #7a5b9f;
}

.shop-product-placeholder i {
    font-size: 50px;
    opacity: 0.6;
}

.shop-product-placeholder span {
    font-size: 13px;
    font-weight: 700;
}

.shop-product-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(38, 0, 107, 0.1);
}

.shop-product-content {
    padding: 24px;
}

.shop-product-content h3 {
    min-height: 54px;
    margin: 0 0 9px;
    color: var(--primary-dark);
    font-size: 19px;
    line-height: 1.45;
}

.shop-product-price {
    display: block;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
}

.shop-product-button {
    width: 100%;
    padding: 13px 16px;
    background: #f2ebff;
    color: var(--primary-dark);
}

.shop-product-button:hover {
    background: var(--primary);
    color: #fff;
}

.shop-information {
    padding: 0 0 90px;
}

.shop-information-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px;
    border: 1px solid #e7d9f7;
    border-radius: 22px;
    background: #faf8ff;
}

.shop-information-icon {
    flex: 0 0 auto;
    margin: 0;
}

.shop-information-card h2 {
    margin: 0 0 10px;
    color: var(--primary-dark);
}

.shop-information-card p {
    max-width: 850px;
    margin: 0;
    color: #6b6575;
    line-height: 1.7;
}

.shop-cta {
    padding: 0 0 95px;
}

.shop-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    padding: 46px;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            #26006b,
            #6f2dbd
        );
    color: #fff;
    box-shadow: 0 24px 60px rgba(38, 0, 107, 0.2);
}

.shop-cta-card > div {
    max-width: 700px;
}

.shop-cta-card .eyebrow {
    color: #d9c4ff;
}

.shop-cta-card h2 {
    margin: 8px 0 12px;
    color: #fff;
    font-size: clamp(30px, 5vw, 46px);
}

.shop-cta-card p {
    margin: 0;
    line-height: 1.7;
    opacity: 0.92;
}

@media (max-width: 950px) {
    .shop-hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .shop-hero-visual {
        min-height: 280px;
    }

    .shop-benefit-grid,
    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .shop-hero {
        padding: 82px 0 72px;
    }

    .shop-benefits {
        margin-top: -20px;
    }

    .shop-benefit-grid,
    .shop-product-grid {
        grid-template-columns: 1fr;
    }

    .shop-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-primary-button,
    .shop-secondary-button {
        width: 100%;
    }

    .shop-information-card,
    .shop-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-cta-card {
        padding: 30px;
    }

    .shop-cta-card .shop-primary-button {
        width: 100%;
    }
}

.membership-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 92px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 255, 255, 0.14),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #26006b,
            #6f2dbd
        );
    color: #fff;
}

.membership-hero::after {
    position: absolute;
    right: -120px;
    bottom: -210px;
    width: 460px;
    height: 460px;
    border: 72px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
}

.membership-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.membership-hero .eyebrow {
    color: #e2d1ff;
}

.membership-hero h1 {
    max-width: 760px;
    margin: 12px 0 22px;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.membership-hero p {
    max-width: 700px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.94;
}

.membership-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    padding: 15px 22px;
    border-radius: 14px;
    background: #fff;
    color: var(--primary-dark);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(18, 0, 54, 0.24);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.membership-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(18, 0, 54, 0.3);
}

.membership-section {
    padding: 92px 0;
}

.membership-alt {
    background: #f8f5fd;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.membership-card {
    padding: 30px;
    border: 1px solid #eadff8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(38, 0, 107, 0.07);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(38, 0, 107, 0.12);
}

.membership-card > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 17px;
    background: #f2ebff;
    color: var(--primary);
    font-size: 23px;
}

.membership-card h3 {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: 22px;
}

.membership-card p {
    margin: 0;
    color: #6b6575;
    line-height: 1.7;
}

.membership-info {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: stretch;
    gap: 30px;
}

.membership-info > div:first-child {
    padding: 10px 0;
}

.membership-info h2 {
    margin: 8px 0 18px;
    color: var(--primary-dark);
    font-size: clamp(32px, 5vw, 48px);
}

.membership-info p {
    max-width: 720px;
    margin: 0;
    color: #6b6575;
    font-size: 17px;
    line-height: 1.8;
}

.membership-highlight {
    padding: 32px;
    border: 1px solid #e5d9ff;
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5efff
        );
    box-shadow: 0 18px 45px rgba(38, 0, 107, 0.08);
}

.membership-highlight > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: var(--primary);
    color: #fff;
    font-size: 24px;
}

.membership-highlight h3 {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 23px;
}

.membership-highlight p {
    margin: 0;
    color: #6b6575;
    line-height: 1.7;
}

.membership-form-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 280px;
    padding: 42px;
    border: 2px dashed #d8c5ef;
    border-radius: 26px;
    background: #faf8ff;
    color: #6d6877;
    text-align: center;
}

.membership-form-placeholder > i {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 48px;
}

.membership-form-placeholder h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 24px;
}

#aanmelden {
    scroll-margin-top: 110px;
}

@media (max-width: 900px) {
    .membership-grid {
        grid-template-columns: 1fr;
    }

    .membership-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .membership-hero {
        padding: 82px 0 72px;
    }

    .membership-section {
        padding: 68px 0;
    }

    .membership-primary-button {
        width: 100%;
    }

    .membership-card,
    .membership-highlight {
        padding: 26px;
    }

    .membership-form-placeholder {
        min-height: 220px;
        padding: 30px 22px;
    }
}

.agenda-category {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f2ebff;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.site-header {
    position: relative;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    border-radius: 999px;
    background: #fff;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-member-link {
    display: none;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(18, 0, 54, 0.52);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 980px) {
    .site-header .nav {
        min-height: 78px;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .logo img {
        flex: 0 0 auto;
    }

    .logo-text {
        min-width: 0;
    }

    .logo-text strong {
        display: block;
        overflow: hidden;
        font-size: clamp(20px, 6vw, 28px);
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        position: relative;
        z-index: 1001;
        display: block;
        flex: 0 0 auto;
    }

    .member-btn {
        display: none;
    }

    .menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 6px;
        width: min(86vw, 360px);
        height: 100dvh;
        padding: 96px 24px 30px;
        background:
            linear-gradient(
                180deg,
                #26006b,
                #4e129b
            );
        box-shadow: -18px 0 45px rgba(16, 0, 45, 0.28);
        transform: translateX(100%);
        transition: transform 0.25s ease;
    }

    .menu.is-open {
        transform: translateX(0);
    }

    .menu a {
        display: flex;
        align-items: center;
        min-height: 50px;
        padding: 0 16px;
        border-radius: 12px;
        color: #fff;
        font-size: 17px;
        font-weight: 700;
        text-decoration: none;
    }

    .menu a:hover,
    .menu a.active {
        background: rgba(255, 255, 255, 0.14);
    }

    .menu .mobile-member-link {
        display: flex;
        justify-content: center;
        margin-top: 12px;
        background: #fff;
        color: var(--primary-dark);
    }

    .menu .mobile-member-link:hover {
        background: #f2ebff;
    }
}

@media (max-width: 560px) {
    .site-header .nav {
        min-height: 72px;
    }

    .logo img {
        width: 56px;
        height: 56px;
        object-fit: contain;
    }

    .logo-text strong {
        font-size: 22px;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .menu {
        width: min(90vw, 340px);
        padding-inline: 20px;
    }
}

/* ==========================================
   Nieuws responsive
========================================== */

.news-card img,
.news-item img,
.news-image img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {

    .news-card img,
    .news-item img,
    .news-image img {
        aspect-ratio: 16 / 9;
        max-height: 220px;
    }

}

.is-conditional-field[hidden] {
    display: none !important;
}

.is-conditional-field[hidden] {
    display: none !important;
}

.public-upload-field {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    padding: 18px;
    border: 2px dashed #d8c5ef;
    border-radius: 16px;
    background: #faf8ff;
    box-sizing: border-box;
}

.public-file-input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.public-upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0 !important;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.public-upload-filename {
    color: #6d6677;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.public-file-help {
    display: block;
    margin-top: 8px;
    color: #746d7e;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .public-upload-field {
        align-items: stretch;
        flex-direction: column;
    }

    .public-upload-button {
        width: 100%;
        box-sizing: border-box;
    }
}

.public-form-message{
    display:flex;
    align-items:flex-start;
    gap:22px;

    margin-bottom:35px;
    padding:26px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(40,0,90,.08);
}

.public-form-message.success{
    background:#eefaf1;
    border-left:6px solid #38b46b;
}

.public-form-message.error{
    background:#fff2f2;
    border-left:6px solid #dc3545;
}

.message-icon{
    flex-shrink:0;

    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:28px;
}

.success .message-icon{
    background:#38b46b;
    color:#fff;
}

.error .message-icon{
    background:#dc3545;
    color:#fff;
}

.message-content h3{
    margin:0 0 8px;

    font-size:24px;
    font-weight:800;

    color:var(--primary);
}

.message-content p{
    margin:0;

    line-height:1.8;
    color:#555;
}

.public-thank-you {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 36px;
    border: 1px solid #e3d8f2;
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #faf7ff
        );
    box-shadow: 0 22px 60px rgba(49, 6, 108, 0.12);
    text-align: center;
}

.public-thank-you-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #36ae67;
    color: #ffffff;
    font-size: 38px;
    box-shadow: 0 14px 30px rgba(54, 174, 103, 0.25);
}

.public-thank-you-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #5a17a5;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.public-thank-you h2 {
    margin: 0 0 18px;
    color: var(--primary-dark);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
}

.public-thank-you-message {
    max-width: 620px;
    margin: 0 auto 30px;
    color: #625a6d;
    font-size: 18px;
    line-height: 1.8;
}

.public-thank-you-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 620px;
    margin: 0 auto 30px;
    padding: 20px;
    border-radius: 18px;
    background: #f4edff;
    text-align: left;
}

.public-thank-you-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #ffffff;
    color: var(--primary);
    font-size: 22px;
}

.public-thank-you-info strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-size: 16px;
}

.public-thank-you-info span {
    display: block;
    color: #6b6374;
    font-size: 14px;
    line-height: 1.6;
}

.public-thank-you-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.public-thank-you-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.public-thank-you-button:hover {
    transform: translateY(-2px);
}

.public-thank-you-button.primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(71, 11, 151, 0.2);
}

.public-thank-you-button.secondary {
    border: 1px solid #d9cbed;
    background: #ffffff;
    color: var(--primary);
}

.public-form-message {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 17px;
}

.public-form-message.error {
    border: 1px solid #f0bcbc;
    background: #fff2f2;
    color: #8c2929;
}

.public-form-message-icon {
    flex: 0 0 auto;
    font-size: 24px;
}

.public-form-message-content strong {
    display: block;
    margin-bottom: 5px;
}

.public-form-message-content p {
    margin: 0;
    line-height: 1.6;
}

.is-conditional-field[hidden] {
    display: none !important;
}

@media (max-width: 600px) {
    .public-thank-you {
        padding: 38px 22px;
        border-radius: 22px;
    }

    .public-thank-you-info {
        flex-direction: column;
        text-align: center;
    }

    .public-thank-you-info-icon {
        margin: 0 auto;
    }

    .public-thank-you-actions {
        flex-direction: column;
    }

    .public-thank-you-button {
        width: 100%;
        box-sizing: border-box;
    }
}