:root{
    --sv-bg: #f4f0ed;
    --sv-surface: #ffffff;
    --sv-surface-soft: #fbf8f7;
    --sv-border: #eadfdb;
    --sv-border-strong: #e3d5d0;
    --sv-primary: #991126;
    --sv-primary-dark: #7f0e1f;
    --sv-text: #5e504e;
    --sv-text-soft: #6b5c5a;
    --sv-heading: #9a1028;
    --sv-shadow: 0 20px 45px rgba(88, 39, 39, 0.08);
    --sv-shadow-soft: 0 12px 28px rgba(88, 39, 39, 0.06);
    --sv-radius-xl: 34px;
    --sv-radius-lg: 24px;
    --sv-radius-md: 18px;
    --sv-radius-sm: 14px;
    --sv-container: 1380px;
}

html,
body{
    margin: 0;
    padding: 0;
}

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

body{
    background: var(--sv-bg);
    color: var(--sv-text);
    font-family: 'Roboto', sans-serif;
}

/* algemene media */
img{
    max-width: 100%;
    height: auto;
    display: block;
}

/* hoofdlayout */
.sv-contact-page{
    padding-top: 72px;
    padding-right: 20px;
    padding-bottom: 60px;
    padding-left: 20px;
}

.sv-contact-shell{
    max-width: var(--sv-container);
    margin: 0 auto;
}

.sv-contact-grid{
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 30px;
    align-items: stretch;
    background: var(--sv-surface);
    border-radius: var(--sv-radius-xl);
    padding: 30px;
    box-shadow: var(--sv-shadow);
}

/* linkerkolom */
.sv-contact-info-panel{
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-width: 0;
}

.sv-contact-info-image{
    background: #f7f4f3;
    border: 1px solid #f0e7e4;
    border-radius: 28px;
    overflow: hidden;
    min-height: 560px;
}

.sv-contact-info-image img{
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center center;
}

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

.sv-contact-card{
    background: var(--sv-surface-soft);
    border: 1px solid var(--sv-border);
    border-radius: var(--sv-radius-md);
    padding: 22px 20px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
    min-width: 0;
}

.sv-contact-card h3{
    margin: 0 0 12px;
    color: var(--sv-heading);
    font-family: 'Poppins', sans-serif;
    font-size: 1.28rem;
    line-height: 1.15;
    font-weight: 700;
}

.sv-contact-card p,
.sv-contact-card address{
    margin: 0;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.75;
    color: #655654;
    word-break: break-word;
}

.sv-contact-card a{
    color: var(--sv-primary);
    text-decoration: none;
    font-weight: 500;
}

.sv-contact-card a:hover{
    text-decoration: underline;
}

/* rechterkolom */
.sv-contact-form-panel{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    padding: 8px 0 8px;
}

.sv-contact-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    width: 100%;
    margin: 0 0 28px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #e9dddc;
    color: var(--sv-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
}

.sv-contact-form-title{
    margin: 0 0 18px;
    max-width: 640px;
    color: var(--sv-heading);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.6rem);
    line-height: 0.94;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.sv-contact-form-intro{
    margin: 0 0 30px;
    max-width: 720px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--sv-text-soft);
}

.sv-contact-form{
    display: grid;
    gap: 18px;
}

.sv-contact-field{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-contact-field label{
    color: var(--sv-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
}

.sv-contact-field input,
.sv-contact-field textarea{
    width: 100%;
    border: 1px solid var(--sv-border-strong);
    background: var(--sv-surface-soft);
    border-radius: 18px;
    padding: 18px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #463d3c;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}

.sv-contact-field input::placeholder,
.sv-contact-field textarea::placeholder{
    color: #9d8f8c;
}

.sv-contact-field input:focus,
.sv-contact-field textarea:focus{
    background: #ffffff;
    border-color: #d5aaa9;
    box-shadow: 0 0 0 4px rgba(153, 17, 38, 0.08);
}

.sv-contact-field textarea{
    resize: vertical;
    min-height: 180px;
}

/* button */
.sv-contact-submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    min-height: 58px;
    padding: 16px 28px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sv-primary) 0%, var(--sv-primary-dark) 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(153, 17, 38, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.sv-contact-submit:hover{
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(153, 17, 38, 0.24);
}

.sv-contact-submit:disabled{
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* feedback */
.sv-contact-message{
    display: none;
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 0.98rem;
    line-height: 1.6;
    font-weight: 500;
}

.sv-contact-message.is-success{
    display: block;
    background: #eef8f0;
    border: 1px solid #b9dfbf;
    color: #24683a;
}

.sv-contact-message.is-error{
    display: block;
    background: #fff1f2;
    border: 1px solid #efc2c8;
    color: #8b1f2d;
}

/* honeypot */
.sv-contact-hp{
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* groot tablet / kleine desktop */
@media (max-width: 1199px){
    .sv-contact-page{
        padding-top: 56px;
    }

    .sv-contact-grid{
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 24px;
    }

    .sv-contact-form-panel{
        padding: 0;
    }

    .sv-contact-info-image,
    .sv-contact-info-image img{
        min-height: 500px;
    }

    .sv-contact-info-cards{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sv-contact-form-title{
        max-width: 760px;
    }
}

/* tablet */
@media (max-width: 991px){
    .sv-contact-page{
        padding-top: 42px;
        padding-right: 16px;
        padding-bottom: 48px;
        padding-left: 16px;
    }

    .sv-contact-grid{
        border-radius: 26px;
        padding: 20px;
        gap: 22px;
    }

    .sv-contact-info-image{
        border-radius: 22px;
    }

    .sv-contact-info-image,
    .sv-contact-info-image img{
        min-height: 380px;
    }

    .sv-contact-info-cards{
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sv-contact-card{
        padding: 20px 18px;
    }

    .sv-contact-card h3{
        font-size: 1.18rem;
    }

    .sv-contact-form-title{
        font-size: clamp(2.1rem, 7vw, 3.2rem);
        line-height: 0.98;
    }

    .sv-contact-form-intro{
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .sv-contact-badge{
        min-height: 60px;
        margin-bottom: 22px;
    }

    .sv-contact-field input,
    .sv-contact-field textarea{
        padding: 16px 18px;
        border-radius: 16px;
    }
}

/* mobiel */
@media (max-width: 640px){
    .sv-contact-page{
        padding-top: 28px;
        padding-right: 12px;
        padding-bottom: 36px;
        padding-left: 12px;
    }

    .sv-contact-grid{
        gap: 18px;
        padding: 14px;
        border-radius: 22px;
    }

    .sv-contact-info-panel{
        gap: 16px;
    }

    .sv-contact-info-image{
        border-radius: 18px;
    }

    .sv-contact-info-image,
    .sv-contact-info-image img{
        min-height: 250px;
    }

    .sv-contact-card{
        border-radius: 16px;
        padding: 18px 16px;
    }

    .sv-contact-card h3{
        margin-bottom: 10px;
        font-size: 1.06rem;
    }

    .sv-contact-card p,
    .sv-contact-card address{
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .sv-contact-badge{
        min-height: 52px;
        padding: 12px 18px;
        margin-bottom: 18px;
        font-size: 0.95rem;
    }

    .sv-contact-form-title{
        margin-bottom: 14px;
        font-size: clamp(1.85rem, 10vw, 2.5rem);
        line-height: 0.98;
    }

    .sv-contact-form-intro{
        margin-bottom: 20px;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .sv-contact-form{
        gap: 15px;
    }

    .sv-contact-field{
        gap: 8px;
    }

    .sv-contact-field label{
        font-size: 0.92rem;
    }

    .sv-contact-field input,
    .sv-contact-field textarea{
        padding: 15px 16px;
        font-size: 16px;
        border-radius: 14px;
    }

    .sv-contact-field textarea{
        min-height: 150px;
    }

    .sv-contact-submit{
        max-width: 100%;
        min-height: 54px;
        padding: 15px 20px;
        font-size: 0.98rem;
    }

    .sv-contact-message{
        padding: 14px 15px;
        border-radius: 14px;
        font-size: 0.94rem;
    }
}
.sv-contact-shell{
    margin-top: 60px;
}
/* =========================
   BEDANKPAGINA
   ========================= */

.sv-thankyou-page{
    background:
        radial-gradient(circle at top, #f8f5f2 0%, #f4f0ed 45%, #efe9e5 100%);
}

.sv-thankyou-page .sv-contact-page{
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}

.sv-thankyou-page .sv-contact-shell{
    max-width: 920px;
    margin-top: 0;
}

.sv-thankyou-page .sv-contact-grid{
    grid-template-columns: 1fr;
    gap: 0;
    padding: 56px 48px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(234, 223, 219, 0.9);
    box-shadow: 0 24px 60px rgba(88, 39, 39, 0.09);
    backdrop-filter: blur(6px);
}

.sv-thankyou-page .sv-contact-form-panel{
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

/* logo */
.sv-thankyou-logo{
    margin: 0 0 20px;
}

.sv-thankyou-logo img{
    width: 92px;
    max-width: 100%;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 8px 18px rgba(153, 17, 38, 0.12));
}

/* badge mooier en subtieler */
.sv-thankyou-page .sv-contact-badge{
    width: auto;
    min-height: auto;
    margin: 0 0 22px;
    padding: 10px 18px;
    background: #f7ecee;
    border: 1px solid #edd7db;
    color: var(--sv-primary);
    font-size: 0.95rem;
    border-radius: 999px;
    box-shadow: none;
}

/* titel rustiger */
.sv-thankyou-page .sv-contact-form-title{
    max-width: 620px;
    margin: 0 0 18px;
    font-size: clamp(2.3rem, 5vw, 4.1rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
}

/* intro netter */
.sv-thankyou-page .sv-contact-form-intro{
    max-width: 620px;
    margin: 0 0 30px;
    font-size: 1.06rem;
    line-height: 1.8;
    color: var(--sv-text-soft);
}

/* knop compacter */
.sv-thankyou-page .sv-contact-submit{
    width: auto;
    min-width: 240px;
    max-width: none;
    min-height: 56px;
    padding: 16px 30px;
}

/* subtiele decoratieve lijn */
.sv-thankyou-divider{
    width: 72px;
    height: 4px;
    margin: 0 auto 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4b15a 0%, #b88928 100%);
    opacity: 0.95;
}

/* responsive */
@media (max-width: 991px){
    .sv-thankyou-page .sv-contact-grid{
        padding: 42px 28px;
        border-radius: 26px;
    }

    .sv-thankyou-logo img{
        width: 82px;
    }

    .sv-thankyou-page .sv-contact-form-title{
        font-size: clamp(2rem, 8vw, 3.2rem);
    }

    .sv-thankyou-page .sv-contact-form-intro{
        font-size: 1rem;
        line-height: 1.72;
    }
}

@media (max-width: 640px){
    .sv-thankyou-page .sv-contact-page{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .sv-thankyou-page .sv-contact-shell{
        max-width: 100%;
    }

    .sv-thankyou-page .sv-contact-grid{
        padding: 30px 18px;
        border-radius: 22px;
    }

    .sv-thankyou-logo{
        margin-bottom: 16px;
    }

    .sv-thankyou-logo img{
        width: 72px;
    }

    .sv-thankyou-page .sv-contact-badge{
        margin-bottom: 18px;
        padding: 9px 15px;
        font-size: 0.9rem;
    }

    .sv-thankyou-divider{
        margin-bottom: 20px;
    }

    .sv-thankyou-page .sv-contact-form-title{
        margin-bottom: 14px;
        font-size: clamp(1.9rem, 10vw, 2.6rem);
        line-height: 1;
    }

    .sv-thankyou-page .sv-contact-form-intro{
        margin-bottom: 22px;
        font-size: 0.97rem;
        line-height: 1.68;
    }

    .sv-thankyou-page .sv-contact-submit{
        width: 100%;
        min-width: 0;
    }
}