/* =========================================
   TABLET (iPad 1024) - PIXEL PERFECT
   ========================================= */

@media (min-width: 1024px) {
    .about-content-text {
        padding: 4rem;
    }
}
/* =========================================
   TABLET (iPad Pro 1280px) - PIXEL PERFECT
   ========================================= */

@media (min-width: 1280px) {
    /* --- Nav --- */
    .topnav-mobile {
        display: none;
    }
    /* 1. Header Container - Aangepaste Lay-out voor positionering */
    .topnav-desktop {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 32px;
        height: 112px;
        background: var(--white-seku);
        border-bottom: 0;
        position: relative;
        z-index: 1000;
        max-width: 100%;
        width: 100%;
        position: sticky;
        top: 0;
        border-bottom: 1px solid #F2F2F2;
    }
    /* Logo & Search verticaal centreren */
    .site-logo-link, .search-toggle {
        display: flex;
        align-items: center;
        height: 100%;
    }
    /* 2. Menu Structuur (Hoogte doorgeven) */
    .nav-links {
        display: flex;
        gap: 24px;
        align-items: stretch;
        height: 100%;
        margin-left: auto;
    }
    .desktop-menu-items {
        display: flex;
        gap: 0;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: stretch;
        height: 100%;
    }
    /* 3. Menu Item (LI) - Ankerpunt voor submenu */
    .desktop-menu-items>li {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
    }
    /* 4. Menu Link (A) - Klikbaar gebied */
    .desktop-menu-items>li>a {
        text-decoration: none;
        color: var(--black-seku);
        font-size: 16px;
        font-family: var(--font-body);
        font-weight: 400;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0 24px;
        transition: color 0.2s ease, background-color 0.2s ease;
        height: 3.1875rem;
        border-radius: 0.25rem;
    }
    .desktop-menu-items>li:hover>a, .desktop-menu-items .current_page_item>a {
        background-color: #f9f9f9;
        border-radius: 0.25rem;
    }
    .desktop-only {
        display: flex;
        align-items: center;
    }
    .mobile-only {
        display: none;
    }
    /* =========================================
       5. SUBMENU (DROPDOWN) - FIGMA MATCH
       ========================================= */
    .topnav-desktop .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10000;
        width: 305px;
        background-color: var(--white-seku);
        padding: 28px 40px;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        gap: 0;
        list-style: none;
        margin: 0;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(0.5rem);
        transition: all 0.3s ease;
    }
    /* 6. LAAT HET MENU ZIEN BIJ HOVER */
    .topnav-desktop ul>li:hover>.sub-menu, .topnav-desktop ul>li:focus-within>.sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0.5rem);
    }
    /* 7. STYLING VAN SUBMENU ITEMS */
    .topnav-desktop .sub-menu li {
        display: block;
        width: 100%;
        margin: 0;
        padding: 24px 0;
        border-bottom: 1px solid var(--dark-grey-seku);
    }
    .topnav-desktop .sub-menu li:first-child {
        padding-top: 0;
    }
    .topnav-desktop .sub-menu li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .topnav-desktop .sub-menu a {
        display: block;
        font-family: var(--font-body);
        font-size: 16px;
        line-height: 170%;
        font-weight: 400;
        color: var(--black-seku);
        text-decoration: none;
        height: auto;
        padding: 0;
        transition: color 0.2s ease, padding-left 0.2s ease;
    }
    .topnav-desktop .sub-menu a:hover {
        color: var(--orange-seku);
        padding-left: 4px;
        background-color: transparent;
    }
    .topnav-desktop .sub-menu .menu-item-has-children>a::after {
        display: none;
    }
    .topnav-desktop .menu-item-has-children>a {
        padding-right: 48px;
        position: relative;
    }
    .topnav-desktop .menu-item-has-children>a::after {
        content: '';
        position: absolute;
        right: 24px;
        top: 50%;
        width: 10px;
        height: 6px;
        background-color: var(--black-seku);
        -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / contain;
        mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / contain;
        transform: translateY(-50%);
        transition: transform 0.3s ease, background-color 0.3s ease;
    }
    .topnav-desktop .menu-item-has-children:hover>a::after {
        transform: translateY(-50%) rotate(180deg);
    }
    /* --- Hero (Tablet 1280px) --- */
    .hero {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        align-self: stretch;
        flex-shrink: 0;
        height: calc(100vh - 112px);
        min-height: unset;
        position: relative;
    }
    .hero-content {
        width: 100%;
        max-width: var(--site-max-width);
        gap: 3rem;
        margin: 0 auto;
    }
    .home .hero-content {
        justify-content: flex-end;
    }
    .home .hero {
        padding-bottom: 8rem;
    }
    .hero-title {
        font-size: 56px;
        font-size: 3.5rem;
        line-height: 120%;
        width: 70%;
    }
    .hero-subtitle {
        color: var(--WHITE---SEKU, #FFF);
        font-family: Archivo;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        margin-top: 2rem;
    }
    /* --- Intro & Stats (Tablet 1280px) --- */
    .section-intro {
        gap: 96px;
        align-items: center;
    }
    .intro-content-wrapper {
        margin: 0 auto;
        gap: 56px;
        align-items: flex-start;
    }
    .intro-paragraph {
        font-size: 32px;
    }
    .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin: 0 auto;
    }
    .stat-item {
        width: 100%;
        height: 200px;
    }
    /* --- Services (Tablet 1280px) --- */
    .section-services {
        align-items: center;
    }
    .services-header {
        width: 100%;
        max-width: 59.5rem;
        margin-bottom: 64px;
    }
    .services-wrapper {
        flex-direction: row;
        justify-content: space-between;
        gap: 48px;
        width: 100%;
        max-width: var(--site-max-width);
        margin: 0 auto;
    }
    .services-accordion {
        width: 45%;
    }
    .services-images {
        display: block;
        width: 50%;
        position: relative;
        height: 600px;
    }
    /* --- Projects (Tablet 1280px) --- */
    .section-projects {
        padding: 152px 160px;
    }
    .projects-content {
        width: 100%;
        max-width: var(--site-max-width);
        margin: 0 auto;
    }
    .project-card {
        flex-direction: row;
        align-items: center;
        height: auto;
        position: relative;
    }
    .project-image {
        width: 60%;
    }
    .project-card-overview .image-wrapper img {
        clip-path: polygon(0 0, calc(100% - 5rem) 0, 100% 6rem, 100% 100%, 0 100%)
    }
    .news-card-overview .image-wrapper img {
        clip-path: polygon(0 0, calc(100% - 5rem) 0, 100% 6rem, 100% 100%, 0 100%)
    }
    /* --- News (Tablet 1280px) --- */
    .news-grid-wrapper {
        display: flex;
        flex-direction: row;
        gap: 32px;
        width: 100%;
        max-width: var(--site-max-width);
        margin: 0 auto;
    }
    .news-featured {
        width: 50%;
    }
    .news-list-column {
        width: 50%;
    }
    /* --- FAQ (Tablet 1280px) --- */
    .section-faq {
        padding: 152px 0;
    }
    .faq-header, .faq-list {
        width: 100%;
        max-width: 58rem;
        margin: 0 auto;
    }
    /* --- Contact (Tablet - iPad Pro 1280px) --- */
    .contact-section {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: flex-start;
        align-self: stretch;
        position: relative;
    }
    .contact-container {
        background-color: #fff;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 4rem 100%, 0 calc(100% - 4rem));
    }
    .contact-blob {
        width: 960px;
        height: 1032.5px;
        position: absolute;
        left: 32px;
        top: 145.5px;
        z-index: 0;
        display: block;
    }
    .contact-card {}
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 48px;
        align-items: flex-start;
        justify-content: flex-start;
        align-self: stretch;
    }
    .contact-text-group {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        justify-content: flex-start;
        align-self: stretch;
    }
    .contact-title {
        font-size: 40px;
        line-height: 120%;
        letter-spacing: -0.01em;
    }
    .contact-description {
        font-size: 18px;
        line-height: 170%;
    }
    .contact-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contact-image {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 4rem 100%, 0 calc(100% - 4rem));
    }
    /* --- Footer (Tablet 1280px) --- */
    .footer {
        padding: 96px 32px 48px;
    }
    .footer-top {
        display: grid;
        grid-template-areas: "logo links" "logo socials";
        grid-template-columns: 400px 1fr;
        column-gap: 48px;
        row-gap: 56px;
        width: 100%;
        max-width: var(--site-max-width);
        margin: 0 auto 48px;
    }
    .footer-logo-section {
        grid-area: logo;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }
    .footer-links-grid {
        grid-area: links;
        flex-direction: row;
        gap: 150px;
        align-items: flex-start;
    }
    .socials {
        grid-area: socials;
        justify-content: flex-start;
        padding-bottom: 0;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        width: 100%;
        max-width: var(--site-max-width);
        margin: 0 auto;
    }
    .footer-bottom-container {
        display: flex;
        flex-direction: row;
        gap: 24px;
        align-items: center;
    }
    .footer-legal-nav {
        flex-direction: row;
        gap: 24px;
    }
    /* =========================================
       8. SEARCH DROPDOWN (MOVED INSIDE TABLET/DESKTOP QUERY)
       ========================================= */
    /* 1. Toggle Button styling */
    .search-toggle {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 1.5rem;
        width: 3rem;
        height: 3rem;
        border-radius: 0.25rem;
        border: 1px solid var(--BLACK---SEKU, #222220) !important;
    }
    /* Standaard: Toon vergrootglas, verberg kruisje */
    .search-toggle .icon-search {
        display: block;
    }
    .search-toggle .icon-close {
        display: none;
    }
    /* Als menu OPEN is: Verberg vergrootglas, toon kruisje */
    .search-toggle[aria-expanded="true"] .icon-search {
        display: none;
    }
    .search-toggle[aria-expanded="true"] .icon-close {
        display: block;
    }
    /* 2. De Dropdown Container */
    .search-dropdown {
        box-sizing: border-box;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        margin: 0 auto;
        z-index: 9999;
        width: 100%;
        max-width: 116rem;
        background: var(--white-seku);
        border: 0.5px solid var(--dark-grey-seku);
        border-top: none;
        border-radius: 0.25rem;
        padding: 48px 56px 56px 56px;
        display: flex;
        flex-direction: column;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(0.5rem);
        transition: all 0.3s ease;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    .search-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0.5rem);
    }
    /* 3. Titel */
    .search-heading {
        display: flex;
        flex-direction: column;
    }
    .search-dropdown .search-title {
        color: var(--black-seku);
        font-family: var(--font-heading);
        font-size: 32px;
        line-height: 140%;
        letter-spacing: -0.01em;
        font-weight: 400;
        margin: 0;
    }
    .search-results-list li a {
        display: flex;
        justify-content: space-between;
        color: #000;
    }
    body .search-results-list li {
        list-style: none;
    }
    body .search-results-list {
        margin: 0;
    }
    body .result-type.tag-small {
        display: none;
    }
    /* 4. Input Veld */
    .desktop-search-form {
        width: 100%;
    }
    .search-dropdown .text-input {
        background: var(--grey-seku);
        border-radius: 4px;
        padding: 32px 40px;
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        width: 100%;
    }
    .search-dropdown .search-icon {
        width: 24px;
        height: 24px;
        opacity: 1;
    }
    .search-dropdown .type-your-message {
        background: transparent;
        border: none;
        outline: none;
        width: 100%;
        font-family: var(--font-light);
        font-size: 18px;
        line-height: 170%;
        font-weight: 300;
        color: var(--black-seku);
        padding: 0;
    }
    .search-dropdown .type-your-message::placeholder {
        color: rgba(0, 0, 0, 0.6);
    }
    /* 5. Divider */
    .search-dropdown .line-9 {
        width: 100%;
        height: 1px;
        background-color: var(--grey-seku);
    }
    /* 6. Resultaten Header */
    .results-heading {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .results-title {
        font-family: var(--font-body);
        font-size: 18px;
        font-weight: 400;
        color: var(--black-seku);
    }
    .results-count {
        font-family: var(--font-body);
        font-size: 14px;
        color: var(--black-seku);
    }
    /* 7. Resultaten Container / Placeholder */
    .search-results-container {
        width: 100%;
        max-height: 300px;
        overflow-y: unset;
    }
    .text-input2 {
        background: var(--grey-seku);
        border-radius: 4px;
        padding: 16px 12px;
        display: flex;
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }
    .text-input2 .placeholder {
        color: rgba(0, 0, 0, 0.6);
        font-family: var(--font-body);
        font-size: 16px;
        line-height: 170%;
        flex: 1;
    }
    .arrow-right-alt {
        width: 24px;
        height: 24px;
    }
    /* --- PROJECTS OVERVIEW (Desktop Adjustments) --- */
    .filter-tools {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .masonry-grid {
        flex-direction: row;
        gap: 34px;
        align-items: flex-start;
    }
    .masonry-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 80px;
    }
    .masonry-col.right-col {
        padding-top: 100px;
        padding-top: 0;
    }
    /* =========================================
   PROJECT DETAIL - DESKTOP (1280px+)
   ========================================= */
    /* Header Adjustments */
    .project-header {
        padding: 2.5rem 160px 96px;
        padding-top: 2.5rem;
        /* Desktop padding */
    }
    .project-nav-top {}
    .project-header-content {
        gap: 24px;
    }
    .project-meta-large {
        justify-content: flex-start;
        font-size: 18px;
        /* Groter op desktop */
    }
    .project-main-title {
        font-size: 48px;
        /* Groot op desktop */
        line-height: 120%;
    }
    /* Specs Grid Adjustments */
    .section-project-specs {
        /* Meer ruimte onderaan */
    }
    .specs-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 120px;
        /* Grote gaten tussen kolommen */
        row-gap: 40px;
    }
    .spec-item {
        width: auto;
        /* Niet meer full width */
        min-width: 200px;
        /* Zorgt voor nette uitlijning */
        gap: 14px;
    }
    .spec-label {
        font-size: 16px;
        /* Groter label */
    }
    .spec-value {
        font-size: 32px;
        /* Enorme letters voor de waardes (John Doe etc) */
        line-height: 140%;
    }
    /* =========================================
       TESTIMONIAL (Desktop 1280px+)
       ========================================= */
    .section-testimonial {
        padding: 76px 160px;
        /* Meer padding aan zijkanten */
    }
    .testimonial-container {
        gap: 128px;
        /* Veel meer ruimte tussen quote en auteur */
    }
    .testimonial-quote {
        font-size: 48px;
        /* Groot op desktop */
        line-height: 120%;
        text-align: center;
        /* Vaak mooier op desktop, check design of dit links moet blijven */
    }
    /* In jouw 1728px design staat de tekst links, 
       maar de container is gecentreerd. 
       Pas text-align aan naar 'left' als dat strikt moet. */
    .testimonial-author {
        flex-direction: row;
        /* Naast elkaar */
        align-items: center;
        justify-content: center;
        /* Gecentreerd onder de quote */
        gap: 36px;
        width: auto;
        /* Niet meer full width */
    }
    .author-name, .author-position {
        font-size: 16px;
        /* Iets groter op desktop */
    }
    /* =========================================
   VACATURES DESKTOP
   ========================================= */
    .section-jobs-overview {
        padding: 104px 160px;
        /* Padding uit 1440 design */
    }
    .filter-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        flex-direction: row;
    }
    .job-search-bar {
        width: 284px;
        /* Vaste breedte uit design */
    }
    /* GRID voor de kaarten: 1 kolom maar max breedte? 
       In 1440 design staan ze onder elkaar (1 kolom), maar op 1728 ook.
       Als je 2 kolommen wilt, gebruik dan grid-template-columns: 1fr 1fr;
       Gebaseerd op design lijkt het 1 brede kaart per rij.
    */
    .jobs-list-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .job-card {
        margin: 0 auto;
        /* Content links, knoppen rechts */
        max-width: 52.6875rem;
        justify-content: space-between;
        align-items: flex-start;
        padding: 64px 72px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 3rem 100%, 0 calc(100% - 3rem));
        /* Grotere padding desktop */
    }
    .job-card-content {}
    .job-title {
        font-size: 24px;
        /* Groter op desktop */
    }
    /* Meta grid wordt 2 kolommen op desktop */
    .job-meta-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 24px;
        row-gap: 24px;
    }
    .job-card-actions {
        flex-direction: row;
        align-items: center;
    }
}
/* =========================================
   DESKTOP (1440px & 1728px) - PIXEL PERFECT
   ========================================= */

@media (min-width: 1440px) {
    /* --- Nav --- */
    .topnav-desktop {
        width: 100%;
        max-width: 1728px;
        margin: 0 auto;
        padding: 0 64px;
        max-width: 100%;
        position: sticky;
        top: 0;
        border-bottom: 1px solid #F2F2F2;
    }
    .desktop-menu-items {
        gap: 0;
    }
    /* --- Hero (Desktop 1440px/1728px) --- */
    .hero {
        height: calc(100vh - 112px);
        min-height: unset;
        position: relative;
    }
    .hero-title {
        font-size: 64px;
        width: 1074px;
        font-size: 3.5rem;
    }
    .hero.white-bg-header .hero-title {
        font-size: 3rem;
    }
    .hero.white-bg-header .hero-subtitle {
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 1.9125rem */
    }
    .project-hero-image-wrapper {
        height: 49.875rem;
    }
    /* --- Intro & Stats (Desktop 1440px/1728px) --- */
    .section-intro {
        padding: 9.5rem 0;
        gap: 96px;
        align-items: center;
    }
    .section-services {
        padding-top: 9.5rem
    }
    .about-content-text {
        font-size: 1.125rem;
        clip-path: polygon(0 0, calc(100% - 8rem) 0, 100% 8rem, 100% 100%, 0 100%);
        font-style: normal;
        /* font-weight: 600; */
        line-height: 170%;
    }
    .about-content-text h2 {
        font-size: 2rem;
        font-style: normal;
        font-weight: 400;
    }
    .intro-content-wrapper {
        gap: 56px;
        align-items: flex-start;
    }
    .intro-paragraph {
        font-size: 40px;
        line-height: 170%;
        max-width: unset;
    }
    .intro-actions {
        margin-top: 0;
    }
    .stats-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .stat-item {
        width: 334px;
        height: 203px;
    }
    .stat-content {
        padding: 32px 0 0 40px;
    }
    .contact-stats .stat-content {
        padding: 2.5rem
    }
    /* --- Services (Desktop 1440px/1728px) --- */
    .section-services {
        align-items: center;
    }
    .section-gallery+.section-services {
        padding-top: 0;
    }
    .services-header {
        margin-bottom: 96px;
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .section-title {
        font-size: 56px;
        line-height: 120%;
    }
    .section-desc {
        font-size: 24px;
    }
    .section-description {
        font-size: 24px;
    }
    .services-wrapper {
        flex-direction: row;
        gap: 144px;
        align-items: flex-start;
        width: 100%;
        max-width: var(--site-max-width);
    }
    .services-accordion {
        width: 453px;
        flex-shrink: 0;
        gap: 32px;
    }
    .service-item.active .service-card-title {
        font-size: 32px;
        margin-bottom: 24px;
        color: var(--black-seku);
    }
    .service-item.active .service-card-description {
        font-size: 18px;
        line-height: 170%;
        margin-bottom: 24px;
        color: var(--black-seku);
    }
    .service-item.collapsed {
        padding-top: 8px;
        padding-bottom: 0;
    }
    .service-item.collapsed .service-card-title2 {
        font-size: 32px;
        color: var(--dark-grey-seku);
        cursor: pointer;
    }
    .services-images {
        width: 811px;
        height: 759px;
        position: relative;
        display: block;
    }
    .vector-32 {
        position: relative;
        width: 811px;
        height: 759px;
        z-index: 1;
        object-fit: cover;
    }
    .vector-32 {
        height: 100%;
    }
    .vector-4 {
        position: absolute;
        left: 20px;
        top: -20px;
        width: 808px;
        height: 757px;
        z-index: 1;
        text-decoration-style: block;
    }
    /* --- Projects (Desktop 1440px/1728px) --- */
    .section-projects {
        padding: 152px 0;
    }
    .project-wrapper {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        /* padding: 4rem; */
        max-width: 70rem;
        margin: 0 auto;
    }
    .project-image-container {
        /* width: 100%; */
        /* height: 100%; */
        /* position: absolute; */
        /* left: 0; */
        /* top: 0; */
    }
    .project-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 442px;
    }
    .project-info-card {
        width: 100%;
        max-width: 50.6875rem;
        padding: 3rem;
        left: 3rem;
        bottom: 3rem;
        position: absolute;
    }
    .project-address {
        font-size: 32px;
    }
    /* --- News (Desktop 1440px/1728px) --- */
    .section-news {
        padding-top: 9.5rem 0
    }
    .news-grid-wrapper {
        display: flex;
        flex-direction: row;
        gap: 32px;
        align-items: stretch;
        width: 100%;
        max-width: var(--site-max-width);
        margin: 0 auto;
    }
    .news-featured {
        flex: 2;
        width: 66%;
        flex-shrink: 0;
    }
    .news-card {
        height: 100%;
        width: 100%;
    }
    .news-img {
        height: 530px;
        clip-path: polygon(0 0, calc(100% - 4rem) 0, 100% 4rem, 100% 100%, 0 100%);
    }
    .news-card-content {
        padding: 40px;
    }
    .news-card-title {
        font-size: 24px;
    }
    .news-list-column {
        flex: 1;
        width: 33%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px 0;
        border-left: 1px solid #9C9C9C;
        padding-left: 2rem;
    }
    .news-list-item {
        gap: 24px;
    }
    .line-2 {
        margin: 0;
        border-color: #9C9C9C;
    }
    /* --- FAQ (Desktop 1440px/1728px) --- */
    .section-faq {
        padding: 152px 0;
    }
    .faq-header {
        width: 100%;
        margin: 0 auto 96px auto;
    }
    .faq-list {
        width: 100%;
        margin: 0 auto;
    }
    /* Vector & Logo positioning */
    .bg-graphics-faq {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }
    .vector-faq-1 {
        position: absolute;
        right: 3.92%;
        left: 4.23%;
        bottom: 41%;
        top: 30.78%;
        width: 91.84%;
    }
    .vector-faq-2 {
        position: absolute;
        right: 5.85%;
        left: 8.09%;
        bottom: 21.01%;
        top: 56.09%;
        width: 86%;
    }
    .vector-faq-3 {
        position: absolute;
        right: 14.8%;
        left: 14.87%;
        bottom: 0%;
        top: 81.65%;
        width: 70%;
    }
    .vector-faq-4 {
        position: absolute;
        right: 0%;
        left: 0%;
        bottom: 59.02%;
        top: 0%;
        width: 100%;
    }
    .watermark-logo {
        background: url('../assets/images/logo-watermark.svg') no-repeat center;
        background-size: contain;
        width: 20.96%;
        height: 4.78%;
        position: absolute;
        right: 62.21%;
        left: 16.83%;
        bottom: 51.64%;
        top: 43.58%;
        opacity: 0.1;
    }
    /* --- Contact (Desktop 1440px+ / 1728px Pixel Perfect) --- */
    .contact-section {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: flex-start;
        align-self: stretch;
        position: relative;
    }
    .contact-container {
        height: 567.11px;
        position: relative;
        margin: 0 auto;
    }
    .contact-blob {
        width: 1408px;
        height: 567.11px;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        transform: none;
        opacity: 1;
        overflow: visible;
    }
    .contact-card {
        width: 1196.8px;
        height: 410.67px;
        background: var(--white-seku);
        display: flex;
        flex-direction: row;
        gap: 120px;
        align-items: center;
        justify-content: flex-start;
        position: absolute;
        left: 132.98px;
        top: 78.22px;
        z-index: 1;
        padding: 0;
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 48px;
        align-items: flex-start;
        justify-content: center;
        flex: 1;
        position: relative;
    }
    .contact-text-group {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        justify-content: flex-start;
        align-self: stretch;
    }
    .contact-title {
        font-size: 48px;
        line-height: 120%;
        letter-spacing: -0.01em;
        font-weight: 400;
    }
    .contact-description {
        font-size: 24px;
        line-height: 170%;
        font-weight: 400;
    }
    .contact-image-wrapper {
        width: 100%;
        max-width: 586px;
        height: 420px;
        display: flex;
        align-items: flex-end;
        flex-shrink: 0;
        position: relative;
    }
    .contact-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
    /* --- Footer (Desktop 1440px/1728px) --- */
    .footer {
        padding: 96px 160px 48px;
    }
    .footer-top {
        grid-template-columns: 453px 1fr;
        column-gap: 152px;
    }
    .footer-bottom {
        width: 100%;
        max-width: var(--site-max-width);
        margin: 0 auto;
        justify-content: unset;
        padding-top: 3rem;
    }
    .footer-logo-section .hero-actions {
        justify-content: unset;
    }
    .footer-col {
        align-items: flex-start;
    }
    .footer-links-grid, .footer-links-grid+.socials {
        max-width: 36.625rem;
        width: 100%;
        margin-left: auto;
    }
    .footer-col h4 {
        font-size: 2rem;
        line-height: 140%;
    }
    /* =========================================
       CONTENT LEFT/RIGHT SECTION - DESKTOP
       ========================================= */
    .section-content-lr {
        padding: 152px 24px;
    }
    .content-lr-container {
        flex-direction: row;
        gap: 160px;
        align-items: flex-start;
        justify-content: center;
        max-width: var(--site-max-width);
        margin: 0 auto;
    }
    .content-lr-left {
        flex-shrink: 0;
        width: 624px;
    }
    .content-lr-title {
        font-size: 40px;
        line-height: 130%;
        letter-spacing: -0.01em;
    }
    .content-lr-right {
        flex: 1;
        display: flex;
        align-items: flex-start;
    }
    .content-lr-description {
        font-size: 18px;
        line-height: 170%;
    }
    /* =========================================
       SERVICES SIMPLE LAYOUT (Clean Max-Width)
       ========================================= */
    .services-cards {
        padding: 0 0;
        display: flex;
        flex-direction: row;
        gap: 146px;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
    .services-cards.reverse-layout {
        flex-direction: row-reverse;
    }
    .service-card {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .service-card-title {
        font-size: 32px;
        line-height: 140%;
        letter-spacing: -0.01em;
    }
    .service-card-description {
        font-size: 18px;
        line-height: 170%;
    }
    .service-image-wrapper {
        position: relative;
        flex-shrink: 0;
        width: 692px;
        height: 648px;
    }
    .services-img-border {
        height: 100%
    }
    .vector-3 {
        width: 692px;
        height: 648px;
        object-fit: cover;
        position: relative;
        z-index: 1;
    }
    .services-cards .vector-4 {
        display: block;
        width: 693px;
        height: 649px;
        position: absolute;
        top: -20px;
        left: 20px;
        z-index: 1;
    }
    /*
    .services-cards.reverse-layout .vector-4 {
        left: -20px;
    }*/
    .overview-container {
        padding: 0
    }
    .masonry-grid {
        gap: 4.25rem;
    }
}
/* =========================================
   SINGLE VACATURE - DESKTOP (1280px+)
   ========================================= */

@media (min-width: 1280px) {
    /* Header aanpassingen */
    .project-header-container .heading-2 {
        align-items: center;
        /* Centraal uitgelijnd */
        text-align: center;
    }
    .project-main-title {
        max-width: 100%;
        margin: 0 auto;
    }
    .job-meta-header {
        flex-direction: row;
    }
    .section-gallery+.section-services {
        padding-top: 0;
    }
    .footer-logo-section .hero-actions {
        justify-content: unset;
    }
    .faq-header {
        margin: 0 auto 96px auto;
    }
    /* =========================================
       JOB LISTS - 50/50 GRID LAYOUT (Desktop)
       ========================================= */
    .section-job-lists {
        padding: 9.5rem 60px 152px 160px;
    }
    /* Grid met 2 kolommen en wrapping */
    .job-lists-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14rem 34px;
        align-items: start;
    }
    /* Elke card neemt automatisch 1 grid cel */
    .job-list-card-wrapper {
        width: 100%;
        max-width: 715px;
    }
    /* Titel grotere font op desktop */
    .job-list-card-title {
        font-size: 32px;
    }
    /* Achtergrond Vector tonen op desktop */
    .job-list-bg-vector {
        display: block;
    }
    /* Oneven kaarten (1, 3, 5...) - Vector links achter */
    .job-list-card-wrapper:nth-child(odd) .job-list-bg-vector {
        top: 15px;
        left: 18px;
    }
    /* Even kaarten (2, 4, 6...) - Vector rechts achter */
    .job-list-card-wrapper:nth-child(even) .job-list-bg-vector {
        top: 15px;
        right: 18px;
        left: auto;
    }
    /* TEAM SECTIE */
    .section-team {
        padding: 152px 160px;
    }
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        padding: 0;
    }
    .team-member-card {
        width: calc(33.333% - 22px);
        /* 3 op een rij met gap */
        max-width: none;
    }
    .services-heading h2 {
        text-align: center;
        color: var(--BLACK---SEKU, #222220);
        text-align: center;
        font-family: Museo;
        font-size: 3.5rem;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 4.2rem */
        letter-spacing: -0.035rem;
    }
}
/* Extra breakpoint voor heel grote schermen (optioneel, uit Figma 1728px) */

@media (min-width: 1600px) {
    .section-job-lists, .section-team {
        padding-left: calc((100vw - 1408px) / 2);
        padding-right: calc((100vw - 1408px) / 2);
    }
}
@media (min-width: 1440px) {
    .scroll-down.desktop-only {
        position: absolute;
        right: 0;
        bottom: 8rem;
        right: 10rem;
    }
    .services-heading h2 {
        text-align: center;
        color: var(--BLACK---SEKU, #222220);
        text-align: center;
        font-family: Museo;
        font-size: 3.5rem;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 4.2rem */
        letter-spacing: -0.035rem;
    }
    .inner-topnav .site-logo-link {
        max-width: 19.6875rem;
    }
}
/* Mobile: 3rem cutoff */

body .section-services .vector-32 {
    clip-path: polygon(0 0, calc(100% - 3rem) 0, 100% 3rem, 100% 100%, 0 100%);
    --services-cutoff: 3rem;
    /* JS leest deze waarde uit */
}
/* Desktop: 8rem cutoff */

@media (min-width: 1280px) {
    body .section-services .vector-32 {
        clip-path: polygon(0 0, calc(100% - 8rem) 0, 100% 8rem, 100% 100%, 0 100%);
        --services-cutoff: 8rem;
        /* JS leest deze waarde uit */
    }
}