:root {
    --bg: #fdf6ee;
    --surface: #ffffff;
    --ink: #211a1f;
    --muted: #665c63;
    --accent: #642484;
    --accent-bright: #bc13f2;
    --green: #50a82c;
    --accent-soft: #fdedec;
    --cream: #fdf6ee;
    --line: rgba(33, 26, 31, 0.12);
    --shadow: 0 20px 70px rgba(33, 26, 31, 0.08);
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Quicksand, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

a {
    color: var(--accent);
}

.site-header,
.site-footer,
.hero,
.content-grid,
.band,
.post-list,
.article {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: none;
    padding: 12px max(24px, calc((100vw - 1230px) / 2));
    border-bottom: 0;
    background: rgba(247, 244, 250, 0.86);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
}

.brand small {
    display: none;
    color: var(--muted);
    font-size: 13px;
}

.brand-mark {
    object-fit: contain;
    width: 58px;
    height: 58px;
}

.brand-wordmark {
    display: block;
    width: 198px;
    max-width: 42vw;
    height: auto;
    margin-bottom: 2px;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
    font-size: 17px;
    font-family: "Public Sans", Quicksand, sans-serif;
    font-weight: 500;
}

.nav-item {
    position: relative;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 14px;
    color: var(--ink);
    text-decoration: none;
}

.site-nav summary {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 14px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}

.site-nav summary::-webkit-details-marker {
    display: none;
}

.site-nav summary::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.site-nav a:hover,
.site-nav summary:hover {
    color: var(--green);
}

.nav-toggle,
.menu-toggle {
    display: none;
}

.subnav {
    position: absolute;
    top: 100%;
    right: 0;
    display: grid;
    min-width: 300px;
    max-height: min(72vh, 560px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.subnav a {
    justify-content: flex-start;
    min-height: 36px;
    border-radius: 4px;
    white-space: normal;
}

.subnav a:hover {
    background: var(--accent-soft);
}

.has-children:hover .subnav,
.has-children:focus-within .subnav,
.has-children[open] .subnav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero {
    padding: 112px 0 82px;
}

.hero-with-image {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
    align-items: center;
    gap: 82px;
    width: 100%;
    max-width: none;
    min-height: 820px;
    padding: 118px max(40px, calc((100vw - 1230px) / 2)) 176px;
    background:
        linear-gradient(180deg, rgba(247, 244, 250, 0.96), rgba(242, 239, 248, 0.98)),
        var(--bg);
}

.hero-with-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.86) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255, 255, 255, 0.68) 0 1px, transparent 2px);
    background-position: 8% 18%, 58% 28%;
    background-size: 180px 180px, 260px 260px;
    opacity: 0.55;
    pointer-events: none;
}

.hero-with-image::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -96px;
    left: -8%;
    height: 190px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: #fff;
    pointer-events: none;
}

.hero-with-image > * {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.48);
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 28px 36px rgba(33, 26, 31, 0.13));
}

.hero.compact {
    padding-bottom: 36px;
}

.service-hero {
    padding-bottom: 44px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    line-height: 1.15;
}

h1 {
    max-width: 820px;
    color: var(--accent);
    font-size: 54px;
    font-weight: 400;
}

h2 {
    font-size: 36px;
    font-weight: 400;
}

.hero p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: 22px;
}

.hero-mantra {
    display: grid;
    gap: 2px;
    margin: 0 0 22px;
    color: var(--accent);
    font-size: 60px;
    font-weight: 500;
    line-height: 1.08;
}

.hero-statement {
    max-width: 720px;
    margin: 0 0 30px;
    font-size: 22px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin: 28px 0 0;
    font-size: 15px !important;
}

.hero-trust span {
    color: #e0a627;
    letter-spacing: 0.05em;
}

.button {
    display: inline-flex;
    margin-top: 18px;
    padding: 13px 20px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.button:hover {
    border-color: var(--green);
    background: var(--green);
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.hero .button {
    border-color: var(--green);
    border-radius: 24px;
    background: var(--green);
    box-shadow: 0 8px 20px rgba(80, 168, 44, 0.24);
}

.hero .button:hover {
    border-color: var(--accent);
    background: var(--accent);
}

.hero-secondary {
    min-height: 48px;
    border: 2px solid var(--accent);
    border-radius: 24px;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.58);
}

.intro-strip,
.recognition-section,
.split-section,
.return-section,
.link-section,
.method-grid,
.article-teasers {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.recognition-section {
    width: 100%;
    padding: 96px 0 88px;
    background: #fff;
}

.recognition-section .section-heading {
    width: min(1120px, calc(100% - 40px));
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.recognition-section h2 {
    color: var(--accent);
    font-size: 43px;
}

.recognition-grid {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.recognition-card {
    min-height: 220px;
    border: 0;
    border-left: 4px solid var(--green);
    border-radius: 8px;
    background: #f7f9fa;
    box-shadow: none;
    padding: 30px;
}

.recognition-card h3 {
    color: var(--accent);
    font-size: 26px;
}

.recognition-card p {
    color: var(--muted);
}

.intro-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding: 38px 0 78px;
}

.intro-strip article {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 54px;
    padding: 84px 0;
}

.about-home {
    padding-top: 86px;
}

.about-home blockquote {
    margin: 28px 0 22px;
    border-left: 2px solid var(--accent);
    color: var(--accent);
    font-size: 22px;
    font-style: italic;
    padding-left: 22px;
}

.credential-list {
    display: grid;
    gap: 6px;
    margin: 10px 0 24px;
    padding: 0;
    list-style: none;
}

.credential-list li {
    position: relative;
    color: var(--ink);
    padding-left: 24px;
}

.credential-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.split-section.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
}

.split-section.reverse img {
    order: 2;
}

.split-media {
    display: block;
}

.split-section img,
.split-media img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.split-section p:not(.eyebrow),
.section-heading p {
    color: var(--muted);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-note {
    margin-top: 22px;
}

.link-section {
    padding: 72px 0;
}

.link-section,
.method-grid:nth-of-type(even) {
    position: relative;
}

.link-section.related {
    padding-top: 12px;
    padding-bottom: 72px;
}

.link-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.link-cloud a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    padding: 9px 16px;
    text-decoration: none;
}

.link-cloud a:hover {
    border-color: var(--green);
    color: var(--green);
}

.method-grid,
.article-teasers,
.kracht-section,
.experience-section,
.journey-section {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
    padding: 72px 0;
}

.kracht-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.kracht-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.kracht-card {
    min-height: 220px;
    border: 1px solid rgba(100, 36, 132, 0.18);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 22px 18px;
}

.kracht-card span {
    display: block;
    color: var(--accent);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.kracht-card h3 {
    margin-top: 16px;
    color: var(--accent);
    font-size: 22px;
}

.kracht-card p {
    color: var(--muted);
    font-size: 16px;
}

.return-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: 54px;
    padding: 84px 0;
}

.return-section > div:first-child {
    max-width: 560px;
}

.return-section p:not(.eyebrow) {
    color: var(--muted);
}

.approach-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.approach-list article {
    min-height: 190px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 26px;
}

.approach-list h3 {
    color: var(--accent);
    font-size: 24px;
}

.approach-list p {
    color: var(--muted);
}

.experience-section {
    background: linear-gradient(180deg, rgba(253, 237, 236, 0.72), rgba(253, 246, 238, 0));
}

.experience-list {
    display: grid;
    gap: 12px;
}

.experience-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 0;
}

.experience-list summary {
    display: grid;
    gap: 4px;
    cursor: pointer;
    padding: 20px 24px;
}

.experience-list summary span {
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
}

.experience-list summary small {
    color: var(--muted);
    font-weight: 700;
}

.experience-list details p {
    margin: 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    padding: 20px 24px 24px;
}

.journey-section {
    border-top: 1px solid var(--line);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.journey-card {
    position: relative;
    min-height: 310px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 30px;
}

.journey-card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 18px;
}

.journey-card span {
    position: absolute;
    top: 24px;
    right: 28px;
    color: rgba(100, 36, 132, 0.18);
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
}

.journey-card h3 {
    color: var(--accent);
    font-size: 25px;
}

.journey-card p {
    color: var(--muted);
}

.service-blocks {
    padding-top: 32px;
}

.service-cta {
    padding-top: 36px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-bottom: 64px;
}

.article-body {
    width: min(860px, calc(100% - 40px));
    margin: 0 auto 72px;
}

.text-section {
    padding: 18px 0 24px;
    border-top: 1px solid var(--line);
}

.text-section:first-child {
    border-top: 0;
}

.panel,
.post-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 28px;
}

.panel:hover,
.post-card:hover,
.theme-card:hover,
.price-card:hover {
    transform: translateY(-2px);
    transition: transform 160ms ease, box-shadow 160ms ease;
    box-shadow: 0 24px 74px rgba(100, 36, 132, 0.12);
}

.panel p,
.post-card p,
.article p {
    color: var(--muted);
}

.panel h3 a,
.post-card h3 a {
    color: var(--ink);
    text-decoration: none;
}

.band {
    margin-bottom: 72px;
    padding: 42px;
    border-radius: 8px;
    background: var(--accent-soft);
}

.band::before,
.article-teasers::before {
    content: "";
    display: block;
    width: 140px;
    height: 32px;
    margin-bottom: 18px;
    background: url("/assets/img/heart-divider.svg") center / contain no-repeat;
}

.post-list {
    display: grid;
    gap: 18px;
    padding-bottom: 72px;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto 64px;
}

.theme-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 28px;
}

.theme-card h2 {
    font-size: 25px;
}

.theme-card h2 a {
    color: var(--ink);
    text-decoration: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto 64px;
}

.price-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 30px;
}

.price-card.featured {
    border-color: rgba(100, 36, 132, 0.35);
    background: var(--accent-soft);
}

.price-card .price {
    margin: 18px 0;
    color: var(--accent);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}

.post-card h2 a {
    color: var(--ink);
    text-decoration: none;
}

.article {
    max-width: 820px;
    padding: 72px 0;
}

.knowledge-article {
    width: min(820px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0 24px;
}

.knowledge-article header {
    margin-bottom: 42px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 34px;
}

.knowledge-article header p:not(.eyebrow) {
    color: var(--muted);
    font-size: 22px;
}

.knowledge-article section {
    padding: 28px 0;
}

.article-cta {
    padding-top: 44px;
}

.article-body.lead {
    margin-bottom: 24px;
}

.article header {
    margin-bottom: 48px;
}

.article section {
    margin-top: 36px;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
    gap: 32px;
    border-top: 1px solid var(--line);
    padding: 42px 0 56px;
}

.footer-meta {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    border-top: 1px solid var(--line);
    padding-top: 34px;
}

.footer-meta h3 {
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 20px;
}

.footer-meta p,
.footer-meta address,
.footer-contact p {
    color: var(--muted);
}

.footer-meta a {
    color: var(--ink);
    text-decoration: none;
}

.footer-meta a:hover {
    color: var(--green);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form label,
.contact-form span {
    display: grid;
    gap: 6px;
}

.contact-form span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    padding: 12px 13px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .full,
.contact-form button {
    grid-column: 1 / -1;
}

.trap {
    display: none !important;
}

.notice {
    display: none;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
}

.notice.success {
    background: #edf8f0;
    color: #13612e;
}

.notice.error {
    background: #fff0ed;
    color: #b82105;
}

.notice:target {
    display: block;
}

address {
    color: var(--muted);
    font-style: normal;
}

@media (max-width: 820px) {
    .site-header {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 14px 20px;
    }

    .site-footer {
        display: block;
    }

    .brand-wordmark {
        width: 184px;
        max-width: 62vw;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
    }

    .menu-toggle {
        display: grid;
        gap: 5px;
        width: 42px;
        height: 42px;
        place-content: center;
        border: 1px solid rgba(100, 36, 132, 0.18);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.62);
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--accent);
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        margin-top: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
        padding: 8px;
    }

    .nav-toggle:checked ~ .site-nav {
        display: grid;
    }

    .nav-item {
        width: 100%;
    }

    .site-nav a,
    .site-nav summary {
        display: flex;
        justify-content: space-between;
        width: 100%;
        min-height: 44px;
        border-radius: 4px;
    }

    .subnav {
        position: static;
        display: none;
        min-width: 0;
        max-height: none;
        border: 0;
        border-left: 2px solid var(--accent-soft);
        border-radius: 0;
        background: transparent;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        padding: 0 0 4px 12px;
    }

    .has-children[open] .subnav {
        display: grid;
    }

    .hero {
        padding-top: 0;
    }

    .hero-with-image {
        width: 100vw;
        max-width: 100vw;
        min-height: 0;
        padding: 58px 20px 92px;
        text-align: center;
    }

    .hero-with-image > div,
    .recognition-section .section-heading,
    .recognition-grid,
    .split-section,
    .return-section,
    .method-grid,
    .kracht-section,
    .experience-section,
    .article-teasers {
        max-width: calc(100vw - 40px);
    }

    h1 {
        font-size: 34px;
    }

    .hero-mantra {
        font-size: 42px;
        overflow-wrap: anywhere;
    }

    .hero-statement {
        font-size: 20px;
        overflow-wrap: break-word;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    h2 {
        font-size: 29px;
    }

    .price-card .price {
        font-size: 40px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero-with-image,
    .intro-strip,
    .recognition-grid,
    .journey-grid,
    .split-section,
    .split-section.reverse,
    .return-section,
    .approach-list,
    .site-footer,
    .contact-form,
    .pricing-grid,
    .theme-grid,
    .kracht-grid,
    .footer-meta {
        grid-template-columns: 1fr;
    }

    .split-section.reverse img {
        order: 0;
    }

    .hero-image {
        display: none;
    }
}
