:root {
    --ink: #16302b;
    --ink-soft: #3d5a53;
    --muted: #5b746d;
    --paper: #f3f7f5;
    --paper-2: #ffffff;
    --line: #d5e4df;
    --teal: #0e7a6d;
    --teal-deep: #0b5349;
    --teal-ink: #083b35;
    --mint: #d7efe8;
    --foam: #e8f6f1;
    --sun: #e8b14a;
    --sun-soft: #fff1d0;
    --coral: #b44532;
    --coral-soft: #fde8e4;
    --shadow: 0 18px 40px rgba(22, 48, 43, 0.08);
    --radius: 18px;
    --font: "Outfit", "Segoe UI", sans-serif;
    --serif: "Fraunces", "Georgia", serif;
    --max: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background:
        radial-gradient(900px 420px at 10% -10%, #d9f0e8 0%, transparent 55%),
        radial-gradient(700px 380px at 110% 8%, #fff1cc 0%, transparent 50%),
        var(--paper);
    line-height: 1.6;
    min-height: 100vh;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--teal-deep);
}

a:hover {
    color: var(--teal);
}

h1,
h2,
h3,
.footer-brand {
    font-family: var(--serif);
    font-weight: 680;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 0.6em;
}

h1 {
    font-size: clamp(2.1rem, 6vw, 3.6rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
    font-size: 1.15rem;
}

p {
    margin: 0 0 1rem;
}

.wrap {
    width: min(calc(100% - 2rem), var(--max));
    margin-inline: auto;
}

.narrow {
    width: min(calc(100% - 2rem), 720px);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--teal-deep);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    z-index: 20;
}

.skip-link:focus {
    top: 1rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: color-mix(in srgb, var(--paper) 86%, white);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--teal);
    display: grid;
    place-items: center;
    grid-template-columns: repeat(3, 6px);
    gap: 3px;
    padding: 0 8px;
}

.brand-mark span {
    height: 16px;
    border-radius: 99px;
    background: #fff;
}

.brand-mark span:nth-child(1) { height: 10px; opacity: 0.7; }
.brand-mark span:nth-child(2) { height: 16px; }
.brand-mark span:nth-child(3) { height: 12px; opacity: 0.85; }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-family: var(--serif);
    font-size: 1.05rem;
}

.brand-text em {
    font-style: normal;
    font-size: 0.78rem;
    color: var(--muted);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    place-items: center;
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav ul {
    display: flex;
    gap: 1.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav ul a {
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 500;
}

.site-nav ul a[aria-current="page"],
.site-nav ul a:hover {
    color: var(--teal-deep);
}

.site-nav .header-cta {
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-nav .header-cta:hover {
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.85rem 1.25rem;
    font: inherit;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--teal);
    color: #fff;
}

.btn-primary:hover {
    background: var(--teal-deep);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}

.btn-ghost:hover {
    border-color: var(--teal);
    color: var(--teal-deep);
}

.btn-inverse {
    background: #fff;
    color: var(--teal-deep);
}

.btn-block {
    width: 100%;
}

.hero {
    padding: 3.5rem 0 2.5rem;
}

.hero-compact {
    padding-bottom: 0;
}

.hero-grid {
    display: grid;
    gap: 2rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.7rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 38rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 1rem;
}

.hero-note {
    color: var(--muted);
    font-size: 0.92rem;
}

.quote-stack {
    position: relative;
    display: grid;
    gap: 0.75rem;
}

.stack-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    margin: 0;
}

.quote-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0.9rem;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
    transform: rotate(calc((var(--i) - 1) * 1.1deg));
}

.quote-card h2 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.quote-card p,
.quote-card h2 {
    margin: 0;
}

.quote-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.wijken-bar {
    padding: 0.4rem 0 1.5rem;
    color: var(--muted);
    font-weight: 600;
    text-align: center;
}

.section {
    padding: 3rem 0;
}

.section-alt {
    background: color-mix(in srgb, var(--foam) 70%, white);
}

.section-title {
    text-align: center;
    margin-bottom: 1.6rem;
}

.section-intro {
    text-align: center;
    max-width: 36rem;
    margin: -0.6rem auto 1.6rem;
    color: var(--ink-soft);
}

.steps {
    list-style: none;
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.steps li {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem 1.2rem 1.2rem 1.3rem;
}

.step-num {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--mint);
    color: var(--teal-deep);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.card {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem;
}

.branch-card .text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.4rem;
}

.branch-card .text-link svg {
    width: 16px;
    height: 16px;
}

.panel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--mint);
    color: var(--teal-deep);
    display: grid;
    place-items: center;
    margin-bottom: 0.8rem;
}

.panel-icon svg {
    width: 28px;
    height: 28px;
}

.panel {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
}

.branch-panel .muted,
.muted {
    color: var(--muted);
}

.partner-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
}

.partner-list li {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.85rem 1rem;
}

.partner-list span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.cta-band {
    background: var(--teal);
    color: #fff;
}

.cta-inner {
    display: grid;
    gap: 1.2rem;
    align-items: center;
}

.cta-band h2,
.cta-band p {
    color: #fff;
}

.cta-band p {
    opacity: 0.92;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.check-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 0.6rem;
    align-items: start;
}

.check-list svg {
    width: 22px;
    height: 22px;
    color: var(--teal);
}

.prose-split,
.two-col,
.form-layout {
    display: grid;
    gap: 1.6rem;
}

.plain-list,
.plain-ol {
    padding-left: 1.1rem;
}

.faq {
    border-bottom: 1px solid var(--line);
    padding: 0.7rem 0;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
}

.faq p {
    margin: 0.6rem 0 0.2rem;
    color: var(--ink-soft);
}

.center-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.8rem;
}

.request-form,
.thanks-card,
.prose {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.4rem;
}

.form-layout {
    align-items: start;
}

.field,
.field-grid,
.choice-grid {
    display: grid;
    gap: 0.85rem;
}

.field {
    margin-bottom: 0.4rem;
}

.field-grid {
    grid-template-columns: 1fr;
    margin-bottom: 0.6rem;
}

label,
legend {
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    font: inherit;
    color: var(--ink);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    background: #fff;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--teal) 55%, white);
    outline-offset: 2px;
}

.field-hint {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.choice-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 0.9rem;
    background: var(--foam);
}

.choice-card:has(input:checked) {
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--teal) 18%, white);
}

.choice-card input {
    width: auto;
    margin-top: 0.25rem;
}

.choice-card em {
    display: block;
    font-style: normal;
    color: var(--muted);
    font-weight: 400;
    font-size: 0.92rem;
}

.consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    margin: 1.1rem 0;
    font-weight: 400;
}

.consent input {
    width: auto;
    margin-top: 0.25rem;
}

.form-foot {
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
    margin-top: 0.8rem;
}

.hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.alert {
    border-radius: 12px;
    padding: 0.9rem 1rem;
    background: var(--sun-soft);
    border: 1px solid #ead08a;
    margin-bottom: 1rem;
}

.alert-error {
    background: var(--coral-soft);
    border-color: #edb2a8;
}

.alert ul {
    margin: 0.4rem 0 0 1.1rem;
}

.form-aside {
    display: grid;
    gap: 1rem;
}

.muted-panel {
    box-shadow: none;
    background: var(--foam);
}

.thanks-card {
    padding: 2rem 1.4rem;
}

.meta-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.meta-list div {
    background: var(--foam);
    border-radius: 12px;
    padding: 0.8rem 1rem;
}

.meta-list dt {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.meta-list dd {
    margin: 0.15rem 0 0;
    font-weight: 700;
}

.site-footer {
    padding: 3rem 0 1.4rem;
    color: var(--ink-soft);
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
}

.footer-brand {
    font-size: 1.3rem;
}

.footer-label {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: 0.3rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
}

code {
    font-size: 0.9em;
    background: var(--foam);
    padding: 0.1em 0.35em;
    border-radius: 6px;
}

.page-main {
    padding: 3rem 0 4rem;
}

@media (min-width: 720px) {
    .hero-grid,
    .steps,
    .card-grid.two,
    .card-grid.three,
    .prose-split,
    .two-col,
    .form-layout,
    .cta-inner,
    .footer-grid,
    .field-grid,
    .partner-list {
        grid-template-columns: 1fr 1fr;
    }

    .card-grid.three,
    .footer-grid,
    .partner-list,
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    }

    .field-wide {
        grid-column: 1 / -1;
    }

    .form-layout {
        grid-template-columns: 1.4fr 0.8fr;
    }

    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: center;
    }

    .request-form,
    .thanks-card,
    .prose {
        padding: 2rem;
    }
}

@media (max-width: 799px) {
    .nav-toggle {
        display: grid;
    }

    .site-nav {
        display: none;
        position: absolute;
        inset: 72px 1rem auto;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav ul {
        flex-direction: column;
    }

    .header-cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .quote-card {
        transform: none;
    }
}
