/* General Styles */
body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #333;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

.wide-panel {
    width: min(1280px, calc(100vw - 64px));
    margin: 0 auto;
}

/* Header */
header {
    background-color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 28px;
    width: 100%;
}

.logo img {
    height: 34px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

nav li {
    margin-left: 0;
}

nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 600;
}

.button {
    background-color: #62c015;
    color: #fff;
    padding: 8px 16px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

/* Dropdown nav */
nav li {
    position: relative;
}

nav li.has-dropdown>a::after {
    content: " ▾";
    font-size: 10px;
    vertical-align: middle;
}

nav .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    min-width: 210px;
    z-index: 100;
    padding: 6px 0;
    list-style: none;
    margin: 0;
    flex-direction: column;
    gap: 0;
}

nav .dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

nav li.has-dropdown:hover>.dropdown,
nav li.has-dropdown:focus-within>.dropdown {
    display: flex;
}

nav .dropdown li {
    margin: 0;
}

nav .dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    border-radius: 0;
}

nav .dropdown a:hover {
    background-color: #f5f5f5;
    color: #62c015;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url("../images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    color: #fff;
    min-height: 520px;
    padding: 92px 0 156px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.438) 0%, rgba(0, 0, 0, 0.466) 42%, rgba(0, 0, 0, 0.16) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    width: calc(100% - 170px);
    margin-left: 85px;
    margin-right: 85px;
    text-align: left;
    align-items: center;
    padding-top: 138px;
    position: relative;
}

.new-edition {
    position: absolute;
    left: 50%;
    top: -34px;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
    width: fit-content;
    background-color: #62c015;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 28px;
}

.newedition-date {
    display: inline;
}

.hero h1 {
    font-size: 51px;
    line-height: 1.02;
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -0.6px;
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.18);
}

.hero p {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.14);
}

.motion-ready .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.motion-ready .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-page .step-item,
.home-page .stat-item,
.home-page .sponsors-track img {
    transition: transform 240ms ease, filter 240ms ease;
}

.home-page .step-item:hover,
.home-page .stat-item:hover {
    transform: translateY(-4px);
}

.home-page .sponsors-track img:hover {
    transform: translateY(-3px) scale(1.03);
    filter: saturate(1.05);
}

@media (prefers-reduced-motion: reduce) {

    .motion-ready .reveal-on-scroll,
    .motion-ready .reveal-on-scroll.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-page .step-item,
    .home-page .stat-item,
    .home-page .sponsors-track img {
        transition: none;
    }
}

/* Intro Section */
.intro {
    margin-top: -104px;
    padding: 0 0 34px;
    position: relative;
    z-index: 3;
}

.intro-card {
    position: relative;
    background-color: #f2eee2;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
    min-height: 286px;
    padding: 62px 360px 54px 78px;
}

.intro-text {
    max-width: 620px;
}

.intro-text h2 {
    font-size: 40px;
    margin: 0 0 20px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.7px;
    color: #111;
}

.intro-text p {
    line-height: 1.45;
    color: #4f4f4f;
    font-size: 13.5px;
    margin: 0 0 14px;
}

.intro-badge {
    position: absolute;
    right: -222px;
    top: -140px;
    width: 625px;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
}

.intro-badge img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-label {
    margin: 0 0 28px;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    color: #1b1b1b;
}

.sponsors {
    padding: 34px 0 92px;
    background-color: #fff;
}

.sponsors-slider {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 28px;
    box-sizing: border-box;
}

.sponsors-marquee {
    display: flex;
    width: max-content;
    animation: sponsors-scroll 28s linear infinite;
    will-change: transform;
}

.sponsors-track {
    display: flex;
    align-items: center;
    gap: 64px;
    padding-right: 64px;
    flex: 0 0 auto;
}

.sponsors-track img {
    width: 150px;
    display: block;
    object-fit: contain;
    filter: saturate(0.9);
}

@keyframes sponsors-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.route-feature {
    padding: 18px 0 120px;
    background-color: #fff;
}

.route-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 44px;
}

.route-feature-map {
    position: relative;
    margin-left: calc((100vw - 1120px) / -2);
}

.route-feature-map img {
    width: 100%;
    max-width: 640px;
    display: block;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.12));
}

.route-feature-content {
    max-width: 520px;
}

.route-feature-content h2 {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.7px;
    color: #111;
}

.route-feature-content p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.58;
    color: #4f4f4f;
}

.route-button {
    display: inline-block;
    margin-top: 18px;
    width: auto;
    padding: 12px 24px;
    font-size: 16px;
}

/* Routekaart page */
.routekaart-page {
    background-color: #fff;
}

.routekaart-feature {
    background-color: transparent;
    padding: 60px 0 110px;
}

.routekaart-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.route-outline-button {
    display: inline-block;
    border: 1px solid #2f2f2f;
    color: #2f2f2f;
    background: transparent;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin-top: 18px;
}

.routekaart-buiten {
    padding: 0 0 130px;
}

.routekaart-buiten-panel {
    background-color: #f2eee2;
    overflow: visible;
}

.routekaart-buiten-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
    align-items: center;
    gap: 30px;
    min-height: 240px;
    padding: 6px 0;
}

.routekaart-buiten-text {
    max-width: 480px;
}

.routekaart-buiten-text h2 {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #111;
}

.routekaart-buiten-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.58;
    color: #4f4f4f;
}

.routekaart-buiten-text p+p {
    margin-top: 16px;
}

.routekaart-buiten-image {
    display: flex;
    justify-content: flex-end;
    margin-top: -90px;
    margin-bottom: -90px;
}

.routekaart-buiten-image img {
    width: 100%;
    max-width: 520px;
    display: block;
    transform: translate(22px, 0);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.routekaart-hutten {
    padding: 180px 0 260px;
}

.routekaart-hutten-content {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.routekaart-hutten-content h2 {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.7px;
    color: #111;
}

.routekaart-hutten-content p {
    margin: 0 auto;
    max-width: 560px;
    font-size: 14px;
    line-height: 1.58;
    color: #4f4f4f;
}

.routekaart-hutten-button {
    display: inline-block;
    margin-top: 20px;
    width: auto;
    padding: 12px 24px;
    font-size: 16px;
}

.routekaart-cta {
    background-color: transparent;
}

/* Bewegwijzering page */
.bewegwijzering-page {
    background-color: #fff;
}

.bewegwijzering-page .page-hero h1 {
    font-size: 40px;
}

.bwz-section {
    padding: 66px 0;
}

.bwz-intro,
.bwz-confirm,
.bwz-buiten {
    margin-top: 75px;
}

.bwz-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 1.1fr);
    align-items: center;
    gap: 72px;
}

.bwz-grid-reverse {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
}

.bwz-text {
    max-width: 500px;
}

.bwz-text h2 {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #111;
}

.bwz-text p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.58;
    color: #4f4f4f;
}

.bwz-text p:last-child {
    margin-bottom: 0;
}

.bwz-image {
    display: flex;
    justify-content: center;
}

.bwz-image img {
    display: block;
    width: 100%;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.bwz-image-wide img {
    max-width: 500px;
    width: 80%;
}

.bwz-intro .bwz-image-lower {
    align-self: end;
}

.bwz-image-portrait img {
    max-width: 224px;
    width: 80%;
}

.bwz-sign-sequence {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bwz-sign-item {
    margin: 0;
    background: #f7f7f7;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

.bwz-sign-item img {
    width: 100%;
    max-width: 340px;
    display: block;
    object-fit: contain;
}

.bwz-sign-item-mobile-pijl {
    display: none;
}

.bwz-buiten {
    padding: 12px 0 120px;
}

.bwz-buiten-panel {
    background-color: #f2eee2;
    overflow: visible;
}

.bwz-buiten-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    align-items: center;
    gap: 30px;
    min-height: 280px;
    padding: 22px 0;
}

.bwz-buiten-text {
    max-width: 520px;
}

.bwz-buiten-text h2 {
    margin: 0 0 16px;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #111;
}

.bwz-buiten-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.58;
    color: #4f4f4f;
}

.bwz-buiten-image {
    display: flex;
    justify-content: flex-end;
}

.bwz-buiten-image img {
    width: 100%;
    max-width: 420px;
    transform: translate(18px, 0);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16));
}

.bwz-help {
    padding: 90px 0 180px;
}

.bwz-help-content {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.bwz-help-content h2 {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #111;
}

.bwz-help-content p {
    margin: 0 auto;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.58;
    color: #4f4f4f;
}

.bwz-help-button {
    display: inline-block;
    margin-top: 20px;
}

.bewegwijzering-page .bwz-help-button,
.bewegwijzering-page .cta-button {
    padding: 16px 16px;
    font-size: 20px;
    font-weight: 700;
}

.bwz-cta {
    background-color: transparent;
}

.prizes {
    padding: 8px 0 110px;
    background-color: #fff;
    overflow-x: clip;
}

.prizes-panel {
    background-color: #f6efde;
    overflow: visible;
}

.prizes-card {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
    align-items: center;
    gap: 30px;
    min-height: 290px;
    padding: 28px 44px 28px 0;
}

.prizes-content {
    max-width: 410px;
}

.prizes-content h2 {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #111;
}

.prizes-content p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.55;
    color: #4f4f4f;
}

.prizes-image {
    display: flex;
    justify-content: flex-end;
    overflow: visible;
}

.prizes-image img {
    width: 100%;
    max-width: 760px;
    display: block;
    transform: translate(116px, -56px);
}

.how-it-works {
    padding: 8px 0 98px;
    background-color: #fff;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 90px;
    align-items: start;
}

.how-it-works-intro {
    max-width: 470px;
}

.how-it-works-intro h2 {
    margin: 0 0 22px;
    font-size: 52px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.7px;
    color: #111;
}

.how-it-works-intro p,
.step-item p,
.stat-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.58;
    color: #4f4f4f;
}

.how-it-works-intro p+p {
    margin-top: 16px;
}

.how-it-works-steps {
    display: grid;
    gap: 28px;
    max-width: 520px;
}

.step-item h3 {
    margin: 0 0 10px;
    font-size: 29px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #111;
}

.stats {
    padding: 12px 0 120px;
    background-color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px;
    align-items: start;
}

.stat-item {
    max-width: 290px;
}

.stat-item h3 {
    margin: 0 0 18px;
    font-size: 54px;
    line-height: 0.92;
    font-weight: 500;
    letter-spacing: -0.7px;
    color: #111;
    text-align: center;
}

.stat-item h3 span {
    font-size: 0.52em;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.stat-icon {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    color: #62c015;
    margin-bottom: 8px;
}

.stat-infinity,
.stat-tempo {
    font-size: 3.2em;
    line-height: 0.8;
    margin: 0 0 4px 0;
}

.cta-join {
    padding: 0 0 0;
    background-color: #fff;
    overflow: visible;
}

.cta-panel {
    background-color: #f2eee2;
    overflow: visible;
    width: min(1280px, calc(100vw - 64px));
}

.cta-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
    overflow: visible;
}

.cta-image {
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: -40px 0 -40px 0;
}

.cta-image img {
    width: 400px;
    max-width: none;
    display: block;
    transform: translateY(-60px);
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 500px;
    padding: 72px 80px 72px 40px;
    text-align: left;
}

.cta-content h2 {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.7px;
    color: #111;
}

.cta-content p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.58;
    color: #4f4f4f;
}

.cta-date {
    margin-top: 18px;
    font-weight: 600;
    color: #2e2e2e;
}

.cta-button {
    display: inline-block;
    width: auto;
    margin-top: 16px;
    padding: 12px 24px;
    font-size: 16px;
}

.whitespace-section {
    height: 120px;
}

.site-footer {
    background-color: #f6efde;
    padding: 52px 0 46px;
}

/* Inner page hero */
.page-hero {
    position: relative;
    background-image: url("../images/page-hero-optimized.jpg");
    background-size: cover;
    background-position: center 30%;
    min-height: 200px;
    padding: 48px 0 52px;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.6px;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.6px;
    color: #fff;
    margin: 0 0 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.page-hero-content p {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
}

.page-hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-centered h1 {
    margin: 0 0 16px;
}

.page-hero-centered p {
    margin: 0;
}

.intro-schakeltochten {
    margin-top: 100px;
    padding: 0 0 34px;
    position: relative;
    z-index: 3;
}

.intro-schakeltochten .intro-text h2 {
    margin: 0 0 40px;
    font-size: 56px;
}

.knooppunten-page .page-hero-content h1,
.knooppunten-page .intro-text h2 {
    font-size: 40px;
}

.knooppunten-page .schakeltochten-info {
    padding-bottom: 70px;
}

.knooppunten-page .stats {
    padding-top: 80px;
}

.knooppunten-page .stat-item h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-height: 190px;
}

.knooppunten-page .stat-main {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.knooppunten-page .stat-sub {
    margin-top: 4px;
}

.knooppunten-page .stat-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.2px;
}

.knooppunten-page .stat-icon {
    display: block;
    font-size: 4.8rem;
    line-height: 1;
    color: #62c015;
}

.knooppunten-page .stat-infinity,
.knooppunten-page .stat-tempo {
    font-size: 4.8rem;
    margin-bottom: 0;
}

/* Schakeltochten page */
.schakeltochten-info {
    padding: 120px 0 96px;
    background: #fff;
}

.schakeltochten-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    align-items: start;
}

.schakeltochten-item {
    background: #f9f6ee;
    border-radius: 4px;
    padding: 40px 36px;
}

.schakeltochten-item h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: #62c015;
    letter-spacing: -0.3px;
}

.schakeltochten-item h4 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.2px;
}

.schakeltochten-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4f4f4f;
}

.page-content {
    padding: 72px 0 96px;
}

/* Start- en controleplaatsen page */
.scp-simple {
    padding: 56px 0 88px;
    background: #fff;
}

.scp-simple-card {
    background: #f9f6ee;
    border-radius: 4px;
    padding: 28px;
}

.scp-simple-card h2 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #111;
}

.scp-simple-card p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #4f4f4f;
}

.scp-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid #ebe4d5;
    border-radius: 4px;
}

.scp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 320px;
}

.scp-table th,
.scp-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #efe9dd;
    text-align: left;
    font-size: 15px;
    color: #333;
}

.scp-table th {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    background: #f8f3e7;
}

.scp-table tr:last-child td {
    border-bottom: none;
}

.scp-table td:first-child {
    width: 52px;
    color: #666;
}

.scp-table a {
    color: #1f1f1f;
    font-weight: 700;
    text-decoration: none;
}

.scp-table a:hover {
    color: #62c015;
    text-decoration: underline;
}

/* Hut detail page */
.hut-detail {
    padding: 56px 0 88px;
    background: #fff;
}

.hut-detail-card {
    background: #f9f6ee;
    border-radius: 4px;
    padding: 28px;
}

.hut-detail-card p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.6;
    color: #4f4f4f;
}

.hut-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 26px;
    padding: 16px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #ebe4d5;
}

.hut-meta-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    align-items: start;
}

.hut-meta-label {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.hut-meta-value {
    font-size: 15px;
    color: #333;
}

.hut-body {
    margin-bottom: 28px;
}

.hut-list {
    margin: 0 0 16px 18px;
    padding: 0;
}

.hut-list li {
    margin: 0 0 8px;
    color: #4f4f4f;
    line-height: 1.55;
}

.hut-more {
    margin-bottom: 0;
}

.hut-more a {
    color: #62c015;
    font-weight: 700;
    text-decoration: none;
}

.hut-more a:hover {
    text-decoration: underline;
}

.hut-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hut-gallery-item {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebe4d5;
}

.hut-gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.hut-back-link {
    display: inline-block;
    margin-top: 18px;
    width: auto;
    font-size: 16px;
    padding: 12px 24px;
}

/* Contact page */
.contact-sections {
    background: #f3f3f3;
    padding: 58px 0 72px;
}

.contact-block {
    text-align: center;
    margin: 0 auto 56px;
    max-width: 460px;
}

.contact-block:last-child {
    margin-bottom: 0;
}

.contact-block h2 {
    margin: 0 0 14px;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.5px;
    color: #111;
}

.contact-block p {
    margin: 0 auto 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #4f4f4f;
    max-width: 420px;
}

.contact-link {
    display: inline-block;
    width: auto;
    padding: 12px 24px;
    font-size: 16px;
}

/* Kinderen page */
.kinderen-section {
    padding: 72px 0 96px;
    background: #fff;
}

.kinderen-block {
    display: grid;
    gap: 48px;
    align-items: center;
    margin: 0 0 56px;
}

.kinderen-block:last-child {
    margin-bottom: 0;
}

.kinderen-block-1,
.kinderen-block-2 {
    grid-template-columns: 1fr 1fr;
}

.kinderen-block-2 {
    grid-template-columns: 1fr 1fr;
}

.kinderen-block-2 .kinderen-content {
    order: 1;
}

.kinderen-block-2 .kinderen-image {
    order: 2;
}

.kinderen-block-3 {
    grid-template-columns: 1fr;
}

.kinderen-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: #f9f6ee;
    border-radius: 4px;
    padding: 48px;
}

.kinderen-image img {
    max-width: 100%;
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.08));
}

.kinderen-content h2 {
    margin: 0 0 16px;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #111;
}

.kinderen-content p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #4f4f4f;
}

.kinderen-content p:last-child {
    margin-bottom: 18px;
}

.kinderen-button {
    display: inline-block;
    width: auto;
    padding: 12px 24px;
    font-size: 16px;
}

/* Bijzonderheden page */
.biz-intro {
    padding: 72px 0 56px;
    background: #fff;
}

.biz-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.biz-intro-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin: 0 0 18px;
    letter-spacing: -0.4px;
}

.biz-intro-text p {
    font-size: 15px;
    line-height: 1.65;
    color: #4f4f4f;
    margin: 0;
}

.biz-intro-image img {
    width: 70%;
    display: block;
    border-radius: 0;
    background: transparent;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.12));
    margin: 0 auto;
}

.buitenronde-page .biz-intro {
    padding: 14px 0 0;
}

.buitenronde-page .biz-intro-grid {
    align-items: center;
}

.buitenronde-page .biz-intro-text {
    margin-top: -34px;
}

.buitenronde-page .biz-intro-image {
    margin-top: -20px;
}

.buitenronde-page .biz-intro-image {
    display: flex;
    justify-content: center;
}

.buitenronde-page .biz-intro-image img {
    width: 80%;
}

.biz-aanpassingen {
    padding: 0 0 64px;
    background: #fff;
}

.biz-aanpassingen h2 {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin: 0 0 36px;
    letter-spacing: -0.4px;
}

.biz-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.biz-card {
    background: #f9f6ee;
    border-radius: 4px;
    padding: 32px 36px 36px;
}

.biz-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0 0 14px;
    letter-spacing: -0.2px;
}

.biz-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #4f4f4f;
    margin: 0;
}

.biz-buitenronde {
    padding: 0 0 100px;
    background: #fff;
}

/* Buitenronde page – routes */
.routes-intro {
    padding: 0 0 56px;
    background: #fff;
}

.routes-intro h2 {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin: 0 0 18px;
    letter-spacing: -0.4px;
}

.routes-intro p {
    font-size: 15px;
    line-height: 1.65;
    color: #4f4f4f;
    margin: 0;
    max-width: 720px;
}

.route-block {
    padding: 0 0 28px;
    background: #fff;
}

.route-block-last {
    padding-bottom: 100px;
}

.route-block-card {
    background: #f9f6ee;
    border-radius: 4px;
    padding: 48px 56px 52px;
}

.route-block-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin: 0 0 16px;
    letter-spacing: -0.3px;
}

.route-block-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #4f4f4f;
    margin: 0 0 28px;
    max-width: 640px;
}

.route-download-btn {
    display: inline-block;
    width: auto;
    padding: 12px 24px;
    font-size: 16px;
}

.biz-buitenronde-card {
    background: #f9f6ee;
    border-radius: 4px;
    padding: 36px 44px 40px;
    max-width: 780px;
}

.biz-buitenronde-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin: 0 0 16px;
    letter-spacing: -0.3px;
}

.biz-buitenronde-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #4f4f4f;
    margin: 0 0 10px;
}

.biz-buitenronde-card p:last-child {
    margin: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(180px, 0.9fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr) minmax(240px, 1fr);
    gap: 48px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-logo img {
    width: 100%;
    max-width: 150px;
    display: block;
}

.footer-social {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background-color: #62c015;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-links h3,
.footer-partners h3 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 600;
}

.footer-partner-logos {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-partner-logos img {
    max-width: 110px;
    width: 100%;
    object-fit: contain;
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo img {
    height: 34px;
}

.mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-close-btn span {
    width: 20px;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease;
}

.mobile-close-btn span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close-btn span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.mobile-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 18px;
    font-weight: 600;
    display: block;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: #4a4a4a;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.mobile-has-dropdown .mobile-dropdown {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    padding: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.mobile-has-dropdown .mobile-dropdown.active {
    display: flex;
}

.mobile-dropdown li a {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.mobile-cta-button {
    margin: 20px;
    width: calc(100% - 40px);
    padding: 12px 16px;
    box-sizing: border-box;
    display: block;
    text-align: center;
}


@media (max-width: 1024px) {
    .hero-content {
        margin-left: 20px;
        max-width: 520px;
        padding-top: 102px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .intro-card {
        padding: 52px 42px;
    }

    .intro-badge {
        position: static;
        width: 80vw;
        margin-left: auto;
        margin-right: auto;
        margin: 10px 0 0 auto;
    }

    .sponsors-track {
        gap: 40px;
        padding-right: 40px;
    }

    .sponsors-track img {
        width: 130px;
    }

    .route-feature-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .route-feature-map {
        margin-left: 0;
    }

    .route-feature-map img {
        max-width: 460px;
    }

    .prizes-card {
        grid-template-columns: 1fr;
        padding: 36px;
    }

    .prizes-image {
        justify-content: center;
    }

    .prizes-image img {
        max-width: 560px;
        transform: translate(0, 0);
    }

    .how-it-works-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .schakeltochten-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bwz-section {
        padding: 54px 0;
    }

    .bwz-grid,
    .bwz-grid-reverse {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .bwz-sign-sequence {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .bwz-text {
        max-width: none;
    }

    .bwz-image-wide img {
        max-width: 560px;
    }

    .bwz-buiten-card {
        grid-template-columns: 1fr;
        padding: 32px 0;
    }

    .bwz-buiten-image {
        justify-content: center;
    }

    .bwz-buiten-image img {
        max-width: 520px;
        transform: translate(0, 0);
    }

    .bwz-help {
        padding: 72px 0 130px;
    }

    .routekaart-buiten-card {
        grid-template-columns: 1fr;
        padding: 32px 0;
    }

    .routekaart-buiten-image {
        justify-content: center;
        margin-top: -30px;
        margin-bottom: -30px;
    }

    .routekaart-buiten-image img {
        max-width: 460px;
        transform: translate(0, 0);
    }

    .routekaart-hutten-content h2 {
        font-size: 42px;
    }

    .bwz-text h2,
    .bwz-buiten-text h2,
    .bwz-help-content h2 {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-image {
        justify-content: center;
        padding: 32px 28px 0;
    }

    .cta-image img {
        width: 100%;
        max-width: 400px;
        transform: translate(0, 0);
    }

    .cta-content {
        padding: 28px 36px 48px;
    }

    .stat-item {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    header .container {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    nav {
        display: none;
        width: 100%;
        order: 3;
    }

    header .button:not(.mobile-cta-button) {
        display: none;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 10px 14px;
    }

    nav li {
        margin-left: 0;
    }

    .home-page .hero {
        min-height: 330px;
        padding: 56px 0 72px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
    }

    .home-page .hero-content {
        width: 100%;
        margin-left: 0;
        padding-top: 58px;
        text-align: center;
    }

    .home-page .new-edition {
        font-size: 12px;
        top: -22px;
        text-align: center;
        line-height: 1.35;
        display: inline-block;
    }

    .home-page .newedition-date {
        display: block;
    }

    .home-page .hero h1 {
        font-size: 32px;
        line-height: 1.1;
        text-align: center;
    }

    .home-page .hero p {
        font-size: 16px;
        line-height: 1.45;
        text-align: center;
    }

    .page-hero {
        min-height: 170px;
        padding: 36px 0;
    }

    .page-hero+section {
        margin-top: 0 !important;
    }

    .intro-schakeltochten {
        margin-top: 34px;
    }

    .biz-intro {
        padding: 34px 0 40px;
    }

    .buitenronde-page .biz-intro {
        padding: 34px 0 24px;
    }

    .buitenronde-page .biz-intro-text,
    .buitenronde-page .biz-intro-image {
        margin-top: 0;
    }

    .home-page .intro {
        margin-top: -72px;
    }

    .home-page .intro-badge {
        display: none;
    }

    .intro-card {
        padding: 34px 24px;
    }

    .intro-text h2 {
        font-size: 32px;
        line-height: 1.1;
    }

    .home-page .intro-text p,
    .home-page .route-feature-content p,
    .home-page .prizes-content p,
    .home-page .how-it-works-intro p,
    .home-page .step-item p,
    .home-page .stat-item p,
    .home-page .cta-content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .intro-schakeltochten .intro-text h2 {
        margin-bottom: 24px;
        font-size: 36px;
    }

    .page-hero-centered h1 {
        font-size: 36px;
    }

    .sponsors {
        padding: 22px 0 56px;
    }

    .sponsors-marquee {
        animation-duration: 20s;
    }

    .sponsors-track {
        gap: 28px;
        padding-right: 28px;
    }

    .sponsors-track img {
        width: 108px;
    }

    .home-page .route-feature {
        padding: 0 0 72px;
    }

    .home-page .route-feature-grid {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .home-page .route-feature-content {
        order: 1;
    }

    .home-page .route-feature-map {
        order: 2;
    }

    .route-feature-content h2 {
        font-size: 32px;
        line-height: 1.1;
    }

    .routekaart-feature {
        padding: 34px 0 84px;
    }

    .routekaart-actions {
        gap: 10px;
    }

    .route-outline-button,
    .route-button {
        font-size: 13px;
        padding: 10px 14px;
    }

    .routekaart-buiten {
        padding: 0 0 90px;
    }

    .routekaart-buiten-text h2 {
        font-size: 36px;
    }

    .bwz-section {
        padding: 38px 0;
    }

    .bwz-intro,
    .bwz-confirm,
    .bwz-buiten {
        margin-top: 0;
    }

    .bewegwijzering-page .bwz-intro .bwz-image {
        display: none;
    }

    .bwz-text h2,
    .bwz-buiten-text h2,
    .bwz-help-content h2 {
        font-size: 32px;
        line-height: 1.1;
    }

    .biz-intro-text h2,
    .routes-intro h2,
    .route-block-card h2 {
        font-size: 32px;
        line-height: 1.1;
    }

    .biz-intro-text p,
    .routes-intro p,
    .route-block-card p,
    .bwz-text p,
    .bwz-buiten-text p,
    .bwz-help-content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .bwz-confirm .bwz-sign-sequence {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 16px;
    }

    .bwz-confirm .bwz-sign-item {
        background: transparent;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
    }

    .bwz-confirm .bwz-sign-item-mobile-pijl {
        display: block;
    }

    .bwz-confirm .bwz-sign-item-confirm img {
        height: 118px;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }

    .bwz-confirm .bwz-sign-item-mobile-pijl img {
        height: 150px;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }

    .bwz-announce .bwz-sign-item-confirm img {
        height: auto;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }

    .bwz-confirm .bwz-grid {
        gap: 52px;
    }

    .bwz-confirm {
        padding-bottom: 56px;
    }

    .bwz-buiten {
        margin-top: 20px;
        padding: 0 0 72px;
    }

    .bwz-help {
        padding: 48px 0 90px;
    }

    .routekaart-hutten {
        padding: 0 0 90px;
    }

    .routekaart-hutten-content h2 {
        font-size: 38px;
    }

    .home-page .prizes {
        padding: 24px 0 72px;
    }

    .prizes-card {
        padding: 28px 24px;
    }

    .prizes-content h2 {
        font-size: 32px;
        line-height: 1.1;
    }

    .how-it-works {
        padding: 0 0 72px;
    }

    .how-it-works-intro h2,
    .stat-item h3 {
        font-size: 32px;
        line-height: 1.1;
    }

    .step-item h3 {
        font-size: 26px;
        line-height: 1.15;
    }

    .stats {
        padding: 0 0 72px;
    }

    .wide-panel {
        width: calc(100vw - 32px);
    }

    .cta-join {
        padding: 0;
    }

    .home-page .cta-image {
        display: none;
    }

    .home-page .cta-content {
        max-width: none;
        text-align: center;
        padding: 24px 24px 40px;
    }

    .home-page .cta-content h2 {
        font-size: 32px;
        line-height: 1.1;
    }

    .home-page .cta-button {
        display: inline-block;
    }

    .home-page .route-button,
    .home-page .cta-button {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        font-size: 16px;
        line-height: 1.5;
        padding: 14px 18px;
    }

    .home-page .whitespace-section {
        display: none;
    }

    .home-page main .whitespace-section:last-of-type {
        display: block;
        height: 36px;
    }

    .routekaart-page .page-hero h1 {
        font-size: 34px;
        line-height: 1.1;
    }

    .routekaart-page .route-feature-grid {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .routekaart-page .route-feature-content {
        order: 1;
        text-align: left;
    }

    .routekaart-page .route-feature-map {
        order: 2;
    }

    .routekaart-page .route-feature-content h2,
    .routekaart-page .routekaart-buiten-text h2,
    .routekaart-page .routekaart-hutten-content h2,
    .routekaart-page .cta-content h2 {
        font-size: 32px;
        line-height: 1.1;
        text-align: left;
    }

    .routekaart-page .route-feature-content p,
    .routekaart-page .routekaart-buiten-text p,
    .routekaart-page .routekaart-hutten-content p,
    .routekaart-page .cta-content p {
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
    }

    .routekaart-page .routekaart-hutten-content {
        text-align: left;
        margin: 0;
    }

    .routekaart-page .routekaart-hutten-content p {
        max-width: none;
        margin: 0;
    }

    .routekaart-page .routekaart-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .routekaart-page .route-button,
    .routekaart-page .route-outline-button,
    .routekaart-page .routekaart-hutten-button,
    .routekaart-page .cta-button {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        font-size: 16px;
        line-height: 1.5;
        padding: 14px 18px;
        margin-top: 12px;
    }

    .routekaart-page .route-outline-button {
        margin-top: 0;
    }

    .routekaart-page .cta-content {
        text-align: left;
    }

    .mobile-cta-button {
        width: calc(100% - 32px);
        margin: 16px;
        padding: 12px 16px;
    }

    main h1,
    main h2,
    main h3,
    main h4,
    main p {
        text-align: left;
    }

    main h1 {
        font-size: 34px;
        line-height: 1.1;
    }

    main h2 {
        font-size: 32px;
        line-height: 1.12;
    }

    main h3 {
        font-size: 26px;
        line-height: 1.18;
    }

    main h4 {
        font-size: 22px;
        line-height: 1.2;
    }

    main p,
    main li,
    main th,
    main td {
        font-size: 16px;
        line-height: 1.5;
    }

    .stat-item h3,
    .knooppunten-page .stat-main,
    .knooppunten-page .stat-sub,
    .knooppunten-page .stat-icon {
        text-align: center;
    }

    main .button,
    main .route-button,
    main .cta-button,
    main .route-outline-button,
    main .routekaart-hutten-button,
    main .bwz-help-button,
    main .route-download-btn,
    main .contact-link,
    main .kinderen-button,
    main .hut-back-link {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        font-size: 16px;
        line-height: 1.5;
        padding: 14px 18px;
        margin-top: 12px;
    }

    main .routekaart-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer {
        padding: 40px 0 36px;
    }

    .contact-sections {
        padding: 44px 0 52px;
    }

    .contact-block {
        margin-bottom: 40px;
    }

    .contact-block h2 {
        font-size: 34px;
    }

    .kinderen-block-1,
    .kinderen-block-2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .kinderen-block-2 .kinderen-content {
        order: 0;
    }

    .kinderen-block-2 .kinderen-image {
        order: 0;
    }

    .kinderen-image {
        min-height: 240px;
        padding: 32px;
    }

    .kinderen-content h2 {
        font-size: 32px;
        line-height: 1.1;
    }

    .kinderen-section {
        padding: 0 0 72px;
    }

    .kinderen-content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .scp-simple-card {
        padding: 20px;
    }

    .scp-simple-card h2 {
        font-size: 30px;
    }

    .scp-table th,
    .scp-table td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .hut-detail-card {
        padding: 20px;
    }

    .hut-meta-row {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .hut-gallery {
        grid-template-columns: 1fr;
    }

    .hut-gallery-item img {
        height: 220px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .page-hero-content p {
        font-size: 16px;
    }

    .knooppunten-page .page-hero-content h1,
    .knooppunten-page .intro-text h2,
    .knooppunten-page .section-label,
    .knooppunten-page .cta-content h2 {
        font-size: 32px;
        line-height: 1.1;
    }

    .knooppunten-page .page-hero-content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .knooppunten-page .schakeltochten-item h3 {
        font-size: 20px;
        line-height: 1.2;
    }

    .knooppunten-page .schakeltochten-item h4 {
        font-size: 36px;
        line-height: 1.08;
    }

    .knooppunten-page .intro-text p,
    .knooppunten-page .schakeltochten-item p,
    .knooppunten-page .stat-item p,
    .knooppunten-page .cta-content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .knooppunten-page .intro-card,
    .knooppunten-page .schakeltochten-item {
        padding: 28px 24px;
    }

    .knooppunten-page .cta-content {
        text-align: left;
    }

    .knooppunten-page .cta-image {
        padding-left: 0;
    }

    .bijzonderheden-page .biz-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .bijzonderheden-page .biz-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bijzonderheden-page .biz-card h3 {
        font-size: 26px;
        line-height: 1.18;
    }

    .bijzonderheden-page .biz-card p {
        font-size: 16px;
        line-height: 1.5;
    }

    .buitenronde-page .biz-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .buitenronde-page .biz-intro-text,
    .buitenronde-page .biz-intro-image {
        margin-top: 0;
    }

    .buitenronde-page .biz-intro-image {
        justify-content: flex-start;
    }

    .buitenronde-page .biz-intro-image img {
        width: 100%;
        max-width: 460px;
    }

    .buitenronde-page .route-block .container {
        padding-left: 0;
        padding-right: 0;
    }

    .buitenronde-page .route-block-card {
        border-radius: 0;
        padding: 28px;
    }
}